4542 lines
254 KiB
Plaintext
4542 lines
254 KiB
Plaintext
|
|
||
|
R Under development (unstable) (2024-04-04 r86331) -- "Unsuffered Consequences"
|
||
|
Copyright (C) 2024 The R Foundation for Statistical Computing
|
||
|
Platform: x86_64-pc-linux-gnu
|
||
|
|
||
|
R is free software and comes with ABSOLUTELY NO WARRANTY.
|
||
|
You are welcome to redistribute it under certain conditions.
|
||
|
Type 'license()' or 'licence()' for distribution details.
|
||
|
|
||
|
R is a collaborative project with many contributors.
|
||
|
Type 'contributors()' for more information and
|
||
|
'citation()' on how to cite R or R packages in publications.
|
||
|
|
||
|
Type 'demo()' for some demos, 'help()' for on-line help, or
|
||
|
'help.start()' for an HTML browser interface to help.
|
||
|
Type 'q()' to quit R.
|
||
|
|
||
|
> ### Tests of non-Latin-1 plotting in PDF and PS
|
||
|
>
|
||
|
> ## Help says pdf() and postscropt() support encoding =
|
||
|
> ## ISOLatin1 ISOLatin2 ISOLatin7 ISOLatin9
|
||
|
> ## Cyrillic Greek
|
||
|
> ## KOI8-R KOI8-U
|
||
|
> ## WinAnsi aka CP1252 CP1250 CP1251 CP1253 CP1257
|
||
|
> ## and a few more (PDFDdoc, AdobeStd, AdobeSym).
|
||
|
>
|
||
|
> options(warn = 1L)
|
||
|
>
|
||
|
> ### only do this in a UTF-8 locale
|
||
|
> if (!l10n_info()[["UTF-8"]]) {
|
||
|
+ warning("encodings2.R requires a UTF-8 locale")
|
||
|
+ q("no")
|
||
|
+ }
|
||
|
>
|
||
|
> pdfenc <- c("ISOLatin1", "ISOLatin2", "ISOLatin7", "ISOLatin9",
|
||
|
+ "Greek", "Cyrillic", "KOI8-R", "KOI8-U",
|
||
|
+ "WinAnsi", "CP1250", "CP1251", "CP1253", "CP1257")
|
||
|
>
|
||
|
> enc <- c("latin1", "latin2", "iso-8859-13", "latin-9",
|
||
|
+ "iso-8859-7", "iso-8859-5", "KOI8-R", "KOI8-U",
|
||
|
+ "CP1252", "CP1250", "CP1251", "CP1253", "CP1257")
|
||
|
>
|
||
|
> ## only use valid printable characters from the encodings and exclude those
|
||
|
> ## that have a diffent UTF-8 mapping on Windows (iso-8859-7, KOI8-R)
|
||
|
> ##
|
||
|
> ## invalid characters are sometimes converted to unexpected UTF-8 mappings on
|
||
|
> ## Windows (rather than NA)
|
||
|
> valid_printable <- list(
|
||
|
+ "latin1" = c(32:126,160:255),
|
||
|
+ "latin2" = c(32:126,160:255),
|
||
|
+ "iso-8859-13" = c(32:126,160:255),
|
||
|
+ "latin-9" = c(32:126,160:255),
|
||
|
+ "iso-8859-7" = c(32:126,160,163,166:169,171:173,175:209,211:254),
|
||
|
+ # 161, 162 - Windows uses normal quotes, but Linux/macOS uses fancy
|
||
|
+ # 164, 165, 170 - 2003 additions not supported by Windows
|
||
|
+ "iso-8859-5" = c(32:126,160:255),
|
||
|
+ "KOI8-R" = c(32:126,160:255),
|
||
|
+ "KOI8-U" = c(32:126,128:173,175:189,191:255),
|
||
|
+ # 174, 190 - Windows uses characters from KOI8-RU (U+45e, U+40e),
|
||
|
+ # which differs from Unix (R+255d, U+256c)
|
||
|
+ "CP1252" = c(32:126,128,130:140,142,145:156,158:255),
|
||
|
+ "CP1250" = c(32:126,128,130,132:135,137:143,145:151,153:255),
|
||
|
+ "CP1251" = c(32:126,128:151,153:255),
|
||
|
+ "CP1253" = c(32:126,128,130:135,137,139,145:151,153,155,160:169,171:209,211:254),
|
||
|
+ "CP1257" = c(32:126,128,130,132:135,137,139,141:143,145:151,153,155,157:158,160,162:164,166:255)
|
||
|
+ )
|
||
|
>
|
||
|
> do_one <-function(name, encoding)
|
||
|
+ {
|
||
|
+ par(pty="s")
|
||
|
+ plot(c(-1,16), c(-1,16), type="n", xlab="", ylab="", xaxs="i", yaxs="i")
|
||
|
+ title(paste("Centred chars in", name))
|
||
|
+ grid(17, 17, lty=1)
|
||
|
+ known <- valid_printable[[encoding]]
|
||
|
+ x <- rawToChar(as.raw(known), TRUE)
|
||
|
+ z <- rep(NA_character_, 256)
|
||
|
+ z[known] <- iconv(x, encoding, "UTF-8")
|
||
|
+ ##print(z)
|
||
|
+
|
||
|
+ for(i in known) {
|
||
|
+ x <- i %% 16
|
||
|
+ y <- i %/% 16
|
||
|
+ points(x, y, pch = z[i])
|
||
|
+ }
|
||
|
+ par(pty="m")
|
||
|
+ }
|
||
|
>
|
||
|
>
|
||
|
> ## Expect centring to fail for most chars in
|
||
|
> ## CP1253 KOI8-* Cyrillic CP1251 Greek CP1253
|
||
|
> ## as those chars are not in the Adobe afms.
|
||
|
> for(i in seq_along(pdfenc)) {
|
||
|
+ message("\ntesting ", pdfenc[i])
|
||
|
+ ff <- paste0("pdf-", pdfenc[i], ".pdf")
|
||
|
+ ## use compress = FALSE to make the output human readable
|
||
|
+ ## encoding may not work (e.g. latin2 did not in musl), so use try()
|
||
|
+ res <- try(pdf(ff, encoding = pdfenc[i], width = 9, height = 9,
|
||
|
+ compress = FALSE))
|
||
|
+ if(!inherits(res, "try-error")) {
|
||
|
+ ## and this may not work either
|
||
|
+ try(do_one(pdfenc[i], enc[i]))
|
||
|
+ dev.off()
|
||
|
+ }
|
||
|
+ }
|
||
|
|
||
|
testing ISOLatin1
|
||
|
|
||
|
testing ISOLatin2
|
||
|
|
||
|
testing ISOLatin7
|
||
|
|
||
|
testing ISOLatin9
|
||
|
|
||
|
testing Greek
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xba in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xba in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbe in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbe in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc2 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc2 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xca in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xca in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcd in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcd in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xce in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xce in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xda in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xda in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdd in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdd in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xde in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xde in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe2 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe2 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xea in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xea in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xeb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xeb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xed in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xed in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xee in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xee in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xef in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xef in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf2 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf2 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfa in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfa in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfd in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfd in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfe in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfe in encoding iso-8859-7
|
||
|
|
||
|
testing Cyrillic
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaa in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaa in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xab in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xab in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xac in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xac in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xae in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xae in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xba in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xba in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbd in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbd in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbe in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbe in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xca in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xca in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcd in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcd in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xce in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xce in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xda in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xda in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdd in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdd in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xde in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xde in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xea in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xea in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xeb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xeb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xec in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xec in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xed in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xed in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xee in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xee in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xef in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xef in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfa in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfa in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfe in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfe in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xff in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xff in encoding iso-8859-5
|
||
|
|
||
|
testing KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaa in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaa in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xab in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xab in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xac in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xac in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xad in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xad in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xae in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xae in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaf in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaf in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xba in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xba in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbe in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbe in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xca in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xca in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xce in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xce in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcf in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcf in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xda in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xda in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xde in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xde in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdf in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdf in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xea in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xea in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xeb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xeb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xec in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xec in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xed in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xed in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xee in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xee in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xef in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xef in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfa in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfa in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfe in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfe in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xff in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xff in encoding KOI8-R
|
||
|
|
||
|
testing KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x80 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x80 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x81 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x81 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x82 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x82 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x83 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x83 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x84 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x84 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x85 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x85 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x86 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x86 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x87 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x87 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x88 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x88 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x89 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x89 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8a in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8a in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8b in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8b in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8c in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8c in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8d in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8d in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8e in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8e in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8f in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8f in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x90 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x90 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x91 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x91 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x92 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x92 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x93 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x93 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x94 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x94 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x95 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x95 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x96 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x96 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x97 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x97 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x98 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x98 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x99 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x99 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x9b in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x9b in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaa in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaa in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xab in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xab in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xac in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xac in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xad in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xad in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaf in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaf in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xba in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xba in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xca in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xca in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xce in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xce in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcf in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcf in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xda in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xda in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xde in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xde in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdf in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdf in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xea in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xea in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xeb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xeb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xec in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xec in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xed in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xed in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xee in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xee in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xef in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xef in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfa in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfa in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfe in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfe in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xff in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xff in encoding KOI8-U
|
||
|
|
||
|
testing WinAnsi
|
||
|
|
||
|
testing CP1250
|
||
|
|
||
|
testing CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x80 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x80 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x81 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x81 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x83 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x83 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8a in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8a in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8c in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8c in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8d in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8d in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8e in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8e in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8f in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8f in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x90 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x90 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x9a in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x9a in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x9c in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x9c in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x9d in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x9d in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x9e in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x9e in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x9f in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x9f in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaa in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaa in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xba in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xba in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbe in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbe in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xca in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xca in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xce in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xce in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xda in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xda in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xde in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xde in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xea in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xea in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xeb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xeb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xec in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xec in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xed in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xed in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xee in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xee in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xef in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xef in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfa in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfa in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfe in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfe in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xff in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xff in encoding CP1251
|
||
|
|
||
|
testing CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xba in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xba in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbe in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbe in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xca in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xca in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcd in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcd in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xce in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xce in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xda in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xda in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdd in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdd in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xde in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xde in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xea in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xea in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xeb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xeb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xed in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xed in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xee in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xee in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xef in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xef in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfa in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfa in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfd in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfd in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfe in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfe in encoding CP1253
|
||
|
|
||
|
testing CP1257
|
||
|
>
|
||
|
> for(i in seq_along(pdfenc)) {
|
||
|
+ message("\ntesting postscript in ", pdfenc[i])
|
||
|
+ ff <- paste0("PS-", pdfenc[i], ".ps")
|
||
|
+ ## use compress = FALSE to make the output human readable
|
||
|
+ ## encoding may not work (e.g. latin2 did not in musl), so use try()
|
||
|
+ res <- try(postscript(ff, encoding = pdfenc[i], width = 9, height = 9))
|
||
|
+ if(!inherits(res, "try-error")) {
|
||
|
+ ## and this may not work either
|
||
|
+ try(do_one(pdfenc[i], enc[i]))
|
||
|
+ dev.off()
|
||
|
+ }
|
||
|
+ }
|
||
|
|
||
|
testing postscript in ISOLatin1
|
||
|
|
||
|
testing postscript in ISOLatin2
|
||
|
|
||
|
testing postscript in ISOLatin7
|
||
|
|
||
|
testing postscript in ISOLatin9
|
||
|
|
||
|
testing postscript in Greek
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xba in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xba in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbe in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbe in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc2 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc2 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xca in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xca in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcd in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcd in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xce in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xce in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xda in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xda in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdd in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdd in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xde in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xde in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdf in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe2 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe2 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xea in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xea in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xeb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xeb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xed in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xed in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xee in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xee in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xef in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xef in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf0 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf1 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf2 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf2 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf3 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf4 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf5 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf6 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf7 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf8 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf9 in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfa in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfa in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfb in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfc in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfd in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfd in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfe in encoding iso-8859-7
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfe in encoding iso-8859-7
|
||
|
|
||
|
testing postscript in Cyrillic
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaa in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaa in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xab in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xab in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xac in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xac in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xae in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xae in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xba in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xba in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbd in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbd in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbe in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbe in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xca in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xca in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcd in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcd in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xce in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xce in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xda in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xda in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdd in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdd in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xde in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xde in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdf in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xea in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xea in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xeb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xeb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xec in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xec in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xed in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xed in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xee in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xee in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xef in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xef in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf0 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf1 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf2 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf3 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf4 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf5 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf6 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf7 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf8 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf9 in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfa in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfa in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfb in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfc in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfe in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfe in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xff in encoding iso-8859-5
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xff in encoding iso-8859-5
|
||
|
|
||
|
testing postscript in KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaa in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaa in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xab in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xab in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xac in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xac in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xad in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xad in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xae in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xae in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaf in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaf in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xba in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xba in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbe in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbe in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xca in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xca in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xce in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xce in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcf in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcf in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xda in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xda in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xde in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xde in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdf in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdf in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xea in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xea in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xeb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xeb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xec in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xec in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xed in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xed in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xee in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xee in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xef in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xef in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf0 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf1 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf2 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf3 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf4 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf5 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf6 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf7 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf8 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf9 in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfa in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfa in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfb in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfc in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfd in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfe in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfe in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xff in encoding KOI8-R
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xff in encoding KOI8-R
|
||
|
|
||
|
testing postscript in KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x80 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x80 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x81 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x81 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x82 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x82 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x83 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x83 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x84 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x84 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x85 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x85 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x86 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x86 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x87 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x87 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x88 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x88 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x89 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x89 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8a in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8a in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8b in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8b in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8c in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8c in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8d in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8d in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8e in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8e in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8f in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8f in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x90 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x90 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x91 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x91 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x92 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x92 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x93 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x93 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x94 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x94 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x95 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x95 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x96 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x96 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x97 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x97 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x98 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x98 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x99 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x99 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x9b in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x9b in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaa in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaa in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xab in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xab in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xac in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xac in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xad in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xad in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaf in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaf in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xba in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xba in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xca in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xca in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xce in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xce in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcf in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcf in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xda in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xda in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xde in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xde in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdf in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdf in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xea in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xea in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xeb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xeb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xec in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xec in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xed in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xed in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xee in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xee in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xef in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xef in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf0 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf1 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf2 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf3 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf4 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf5 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf6 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf7 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf8 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf9 in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfa in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfa in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfb in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfc in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfd in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfe in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfe in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xff in encoding KOI8-U
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xff in encoding KOI8-U
|
||
|
|
||
|
testing postscript in WinAnsi
|
||
|
|
||
|
testing postscript in CP1250
|
||
|
|
||
|
testing postscript in CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x80 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x80 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x81 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x81 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x83 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x83 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8a in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8a in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8c in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8c in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8d in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8d in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8e in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8e in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x8f in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x8f in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x90 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x90 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x9a in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x9a in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x9c in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x9c in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x9d in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x9d in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x9e in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x9e in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0x9f in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0x9f in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaa in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaa in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xba in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xba in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbe in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbe in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xca in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xca in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xce in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xce in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xda in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xda in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xde in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xde in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdf in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xea in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xea in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xeb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xeb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xec in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xec in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xed in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xed in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xee in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xee in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xef in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xef in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf0 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf1 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf2 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf3 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf4 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf5 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf6 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf7 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf8 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf9 in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfa in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfa in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfb in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfc in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfd in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfe in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfe in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xff in encoding CP1251
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xff in encoding CP1251
|
||
|
|
||
|
testing postscript in CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xa2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xa2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xaf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xaf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xb9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xb9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xba in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xba in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbe in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbe in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xbf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xbf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xc9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xc9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xca in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xca in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcd in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcd in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xce in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xce in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xcf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xcf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xd9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xd9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xda in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xda in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdd in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdd in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xde in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xde in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xdf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xdf in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xe9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xe9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xea in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xea in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xeb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xeb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xed in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xed in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xee in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xee in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xef in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xef in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf0 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf1 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf2 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf3 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf4 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf5 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf6 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf7 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf8 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xf9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xf9 in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfa in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfa in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfb in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfc in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfd in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfd in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font width unknown for character 0xfe in encoding CP1253
|
||
|
Warning in plot.xy(xy.coords(x, y), type = type, ...) :
|
||
|
font metrics unknown for character 0xfe in encoding CP1253
|
||
|
|
||
|
testing postscript in CP1257
|
||
|
>
|
||
|
> if(!capabilities("cairo")) q("no")
|
||
|
> ## Now test cairo_pdf(): do not expect any messages
|
||
|
> cairo_pdf("cairo_pdf-encodings.pdf", width = 9, height = 9, onefile = TRUE)
|
||
|
> for (e in enc) {
|
||
|
+ message("testing ", e, " with cairo_pdf")
|
||
|
+ do_one(e, e)
|
||
|
+ }
|
||
|
testing latin1 with cairo_pdf
|
||
|
testing latin2 with cairo_pdf
|
||
|
testing iso-8859-13 with cairo_pdf
|
||
|
testing latin-9 with cairo_pdf
|
||
|
testing iso-8859-7 with cairo_pdf
|
||
|
testing iso-8859-5 with cairo_pdf
|
||
|
testing KOI8-R with cairo_pdf
|
||
|
testing KOI8-U with cairo_pdf
|
||
|
testing CP1252 with cairo_pdf
|
||
|
testing CP1250 with cairo_pdf
|
||
|
testing CP1251 with cairo_pdf
|
||
|
testing CP1253 with cairo_pdf
|
||
|
testing CP1257 with cairo_pdf
|
||
|
> dev.off()
|
||
|
null device
|
||
|
1
|
||
|
>
|
||
|
> proc.time()
|
||
|
user system elapsed
|
||
|
0.848 0.011 0.848
|