parent
5320ddd7e8
commit
2fde879c21
File diff suppressed because it is too large
Load Diff
@ -1,102 +0,0 @@ |
||||
|
||||
|
||||
/******************************************************************************* |
||||
* Software: FPDF * |
||||
* Version: 1.53 * |
||||
* Date: 2004-12-31 * |
||||
* Author: Olivier PLATHEY * |
||||
* License: Freeware * |
||||
* * |
||||
* You may use and modify this software as you wish. * |
||||
*******************************************************************************/ |
||||
|
||||
/******************************************************************************* |
||||
* HTML2FPDF is a php script to read a HTML text and generate a PDF file. * |
||||
* Copyright (C) 2004-2005 Renato Coelho * |
||||
* * |
||||
* html2fpdf.php, htmltoolkit.php * |
||||
*******************************************************************************/ |
||||
|
||||
CREDITS From HTML2FPDF: |
||||
|
||||
-Olivier Plathey for the fpdf.php class [http://www.fpdf.org] |
||||
-Damon Kohler for the Flowing Block script [mailto:damonkohler@yahoo.com] |
||||
-Clément Lavoillotte for HTML-oriented FPDF idea |
||||
-Yamasoft for the gif.php class [http://www.yamasoft.com/] |
||||
-Jérôme Fenal for the _parsegif() function |
||||
-"VIETCOM" for the PDFTable code [http://www.freepgs.com/vietcom/tool/pdftable/] [mailto:vncommando@yahoo.com] |
||||
-Yukihiro O. for the SetDash() function [mailto:yukihiro_o@infoseek.jp] |
||||
-Ron Korving for the WordWrap() function |
||||
-Michel Poulain for the DisplayPreferences() function |
||||
-Patrick Benny for the MultiCellBlt() function idea [no longer in use] |
||||
-Seb for the _SetTextRendering() and SetTextOutline() functions [mailto:captainseb@wanadoo.fr] |
||||
-MorphSoft for the colornames list idea |
||||
-W3SCHOOLS for HTML-related reference info [http://www.w3schools.com/] |
||||
-Montfort Cultural Association - the site for which I generated this script [http://www.montfort.org.br] |
||||
|
||||
|
||||
/******************************************************************************* |
||||
* Software: UFPDF, Unicode Free PDF generator * |
||||
* Version: 0.1 * |
||||
* Date: 2004-09-01 * |
||||
* Author: Steven Wittens <steven@acko.net> * |
||||
* License: GPL * |
||||
* * |
||||
* UFPDF is a modification of FPDF to support Unicode through UTF-8. * |
||||
*******************************************************************************/ |
||||
|
||||
/**************************************************************************** |
||||
* Software: FPDF_Protection * |
||||
* Version: 1.02 * |
||||
* Date: 2005/05/08 * |
||||
* Author: Klemen VODOPIVEC * |
||||
* License: Freeware * |
||||
* * |
||||
* You may use and modify this software as you wish as stated in original * |
||||
* FPDF package. * |
||||
****************************************************************************/ |
||||
|
||||
/**************************************************************************** |
||||
// FPDI - Version 1.2 |
||||
// |
||||
// Copyright 2004-2007 Setasign - Jan Slabon |
||||
// |
||||
// Licensed under the Apache License, Version 2.0 (the "License"); |
||||
// you may not use this file except in compliance with the License. |
||||
// You may obtain a copy of the License at |
||||
// |
||||
// http://www.apache.org/licenses/LICENSE-2.0 |
||||
// |
||||
// Unless required by applicable law or agreed to in writing, software |
||||
// distributed under the License is distributed on an "AS IS" BASIS, |
||||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||
// See the License for the specific language governing permissions and |
||||
// limitations under the License. |
||||
****************************************************************************/ |
||||
|
||||
/**************************************************************************** |
||||
* @copyright Khaled Al-Shamaa 2008 |
||||
* @link http://www.ar-php.org |
||||
* @author Khaled Al-Shamaa <khaled@ar-php.org> |
||||
* @desc Set of PHP5 / UTF-8 Classes developed to enhance Arabic web |
||||
* applications by providing set of tools includes stem-based searching, |
||||
* translitiration, soundex, Hijri calendar, charset detection and |
||||
* converter, spell numbers, keyboard language, Muslim prayer time, |
||||
* auto-summarization, and more... |
||||
* @package Arabic |
||||
* |
||||
* @version 1.8 released in Feb 15, 2009 |
||||
* |
||||
* @license LGPL |
||||
****************************************************************************/ |
||||
|
||||
|
||||
This library is free software; you can redistribute it and/or |
||||
modify it under the terms of the GNU Lesser General Public |
||||
License as published by the Free Software Foundation; |
||||
This library is distributed in the hope that it will be useful, |
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
||||
Lesser General Public License for more details. |
||||
[http://www.opensource.org/licenses/lgpl-license.php] |
||||
|
File diff suppressed because it is too large
Load Diff
@ -1,700 +0,0 @@ |
||||
<?php |
||||
/////////////////////////////////////////////////////////////////////////////////////////////////// |
||||
// 2009-12-22 Adapted for mPDF 4.2 |
||||
/////////////////////////////////////////////////////////////////////////////////////////////////// |
||||
// GIF Util - (C) 2003 Yamasoft (S/C) |
||||
// http://www.yamasoft.com |
||||
// All Rights Reserved |
||||
// This file can be freely copied, distributed, modified, updated by anyone under the only |
||||
// condition to leave the original address (Yamasoft, http://www.yamasoft.com) and this header. |
||||
/////////////////////////////////////////////////////////////////////////////////////////////////// |
||||
/////////////////////////////////////////////////////////////////////////////////////////////////// |
||||
// 2009-12-22 Adapted INB |
||||
// Functions calling functionname($x, $len = 0) were not working on PHP5.1.5 as pass by reference |
||||
// All edited to $len = 0; then call function. |
||||
/////////////////////////////////////////////////////////////////////////////////////////////////// |
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////// |
||||
|
||||
class CGIFLZW |
||||
{ |
||||
var $MAX_LZW_BITS; |
||||
var $Fresh, $CodeSize, $SetCodeSize, $MaxCode, $MaxCodeSize, $FirstCode, $OldCode; |
||||
var $ClearCode, $EndCode, $Next, $Vals, $Stack, $sp, $Buf, $CurBit, $LastBit, $Done, $LastByte; |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
// CONSTRUCTOR |
||||
function CGIFLZW() |
||||
{ |
||||
$this->MAX_LZW_BITS = 12; |
||||
unSet($this->Next); |
||||
unSet($this->Vals); |
||||
unSet($this->Stack); |
||||
unSet($this->Buf); |
||||
|
||||
$this->Next = range(0, (1 << $this->MAX_LZW_BITS) - 1); |
||||
$this->Vals = range(0, (1 << $this->MAX_LZW_BITS) - 1); |
||||
$this->Stack = range(0, (1 << ($this->MAX_LZW_BITS + 1)) - 1); |
||||
$this->Buf = range(0, 279); |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
function deCompress($data, &$datLen) |
||||
{ |
||||
$stLen = strlen($data); |
||||
$datLen = 0; |
||||
$ret = ""; |
||||
$dp = 0; // data pointer |
||||
|
||||
// INITIALIZATION |
||||
$this->LZWCommandInit($data, $dp); |
||||
|
||||
while(($iIndex = $this->LZWCommand($data, $dp)) >= 0) { |
||||
$ret .= chr($iIndex); |
||||
} |
||||
|
||||
$datLen = $dp; |
||||
|
||||
if($iIndex != -2) { |
||||
return false; |
||||
} |
||||
|
||||
return $ret; |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
function LZWCommandInit(&$data, &$dp) |
||||
{ |
||||
$this->SetCodeSize = ord($data{0}); |
||||
$dp += 1; |
||||
|
||||
$this->CodeSize = $this->SetCodeSize + 1; |
||||
$this->ClearCode = 1 << $this->SetCodeSize; |
||||
$this->EndCode = $this->ClearCode + 1; |
||||
$this->MaxCode = $this->ClearCode + 2; |
||||
$this->MaxCodeSize = $this->ClearCode << 1; |
||||
|
||||
$this->GetCodeInit($data, $dp); |
||||
|
||||
$this->Fresh = 1; |
||||
for($i = 0; $i < $this->ClearCode; $i++) { |
||||
$this->Next[$i] = 0; |
||||
$this->Vals[$i] = $i; |
||||
} |
||||
|
||||
for(; $i < (1 << $this->MAX_LZW_BITS); $i++) { |
||||
$this->Next[$i] = 0; |
||||
$this->Vals[$i] = 0; |
||||
} |
||||
|
||||
$this->sp = 0; |
||||
return 1; |
||||
} |
||||
|
||||
function LZWCommand(&$data, &$dp) |
||||
{ |
||||
if($this->Fresh) { |
||||
$this->Fresh = 0; |
||||
do { |
||||
$this->FirstCode = $this->GetCode($data, $dp); |
||||
$this->OldCode = $this->FirstCode; |
||||
} |
||||
while($this->FirstCode == $this->ClearCode); |
||||
|
||||
return $this->FirstCode; |
||||
} |
||||
|
||||
if($this->sp > 0) { |
||||
$this->sp--; |
||||
return $this->Stack[$this->sp]; |
||||
} |
||||
|
||||
while(($Code = $this->GetCode($data, $dp)) >= 0) { |
||||
if($Code == $this->ClearCode) { |
||||
for($i = 0; $i < $this->ClearCode; $i++) { |
||||
$this->Next[$i] = 0; |
||||
$this->Vals[$i] = $i; |
||||
} |
||||
|
||||
for(; $i < (1 << $this->MAX_LZW_BITS); $i++) { |
||||
$this->Next[$i] = 0; |
||||
$this->Vals[$i] = 0; |
||||
} |
||||
|
||||
$this->CodeSize = $this->SetCodeSize + 1; |
||||
$this->MaxCodeSize = $this->ClearCode << 1; |
||||
$this->MaxCode = $this->ClearCode + 2; |
||||
$this->sp = 0; |
||||
$this->FirstCode = $this->GetCode($data, $dp); |
||||
$this->OldCode = $this->FirstCode; |
||||
|
||||
return $this->FirstCode; |
||||
} |
||||
|
||||
if($Code == $this->EndCode) { |
||||
return -2; |
||||
} |
||||
|
||||
$InCode = $Code; |
||||
if($Code >= $this->MaxCode) { |
||||
$this->Stack[$this->sp++] = $this->FirstCode; |
||||
$Code = $this->OldCode; |
||||
} |
||||
|
||||
while($Code >= $this->ClearCode) { |
||||
$this->Stack[$this->sp++] = $this->Vals[$Code]; |
||||
|
||||
if($Code == $this->Next[$Code]) // Circular table entry, big GIF Error! |
||||
return -1; |
||||
|
||||
$Code = $this->Next[$Code]; |
||||
} |
||||
|
||||
$this->FirstCode = $this->Vals[$Code]; |
||||
$this->Stack[$this->sp++] = $this->FirstCode; |
||||
|
||||
if(($Code = $this->MaxCode) < (1 << $this->MAX_LZW_BITS)) { |
||||
$this->Next[$Code] = $this->OldCode; |
||||
$this->Vals[$Code] = $this->FirstCode; |
||||
$this->MaxCode++; |
||||
|
||||
if(($this->MaxCode >= $this->MaxCodeSize) && ($this->MaxCodeSize < (1 << $this->MAX_LZW_BITS))) { |
||||
$this->MaxCodeSize *= 2; |
||||
$this->CodeSize++; |
||||
} |
||||
} |
||||
|
||||
$this->OldCode = $InCode; |
||||
if($this->sp > 0) { |
||||
$this->sp--; |
||||
return $this->Stack[$this->sp]; |
||||
} |
||||
} |
||||
|
||||
return $Code; |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
function GetCodeInit(&$data, &$dp) |
||||
{ |
||||
$this->CurBit = 0; |
||||
$this->LastBit = 0; |
||||
$this->Done = 0; |
||||
$this->LastByte = 2; |
||||
return 1; |
||||
} |
||||
|
||||
function GetCode(&$data, &$dp) |
||||
{ |
||||
if(($this->CurBit + $this->CodeSize) >= $this->LastBit) { |
||||
if($this->Done) { |
||||
if($this->CurBit >= $this->LastBit) { |
||||
// Ran off the end of my bits |
||||
return 0; |
||||
} |
||||
return -1; |
||||
} |
||||
|
||||
$this->Buf[0] = $this->Buf[$this->LastByte - 2]; |
||||
$this->Buf[1] = $this->Buf[$this->LastByte - 1]; |
||||
|
||||
$Count = ord($data{$dp}); |
||||
$dp += 1; |
||||
|
||||
if($Count) { |
||||
for($i = 0; $i < $Count; $i++) { |
||||
$this->Buf[2 + $i] = ord($data{$dp+$i}); |
||||
} |
||||
$dp += $Count; |
||||
} |
||||
else { |
||||
$this->Done = 1; |
||||
} |
||||
|
||||
$this->LastByte = 2 + $Count; |
||||
$this->CurBit = ($this->CurBit - $this->LastBit) + 16; |
||||
$this->LastBit = (2 + $Count) << 3; |
||||
} |
||||
|
||||
$iRet = 0; |
||||
for($i = $this->CurBit, $j = 0; $j < $this->CodeSize; $i++, $j++) { |
||||
$iRet |= (($this->Buf[intval($i / 8)] & (1 << ($i % 8))) != 0) << $j; |
||||
} |
||||
|
||||
$this->CurBit += $this->CodeSize; |
||||
return $iRet; |
||||
} |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////// |
||||
|
||||
class CGIFCOLORTABLE |
||||
{ |
||||
var $m_nColors; |
||||
var $m_arColors; |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
// CONSTRUCTOR |
||||
function CGIFCOLORTABLE() |
||||
{ |
||||
unSet($this->m_nColors); |
||||
unSet($this->m_arColors); |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
function load($lpData, $num) |
||||
{ |
||||
$this->m_nColors = 0; |
||||
$this->m_arColors = array(); |
||||
|
||||
for($i = 0; $i < $num; $i++) { |
||||
$rgb = substr($lpData, $i * 3, 3); |
||||
if(strlen($rgb) < 3) { |
||||
return false; |
||||
} |
||||
|
||||
$this->m_arColors[] = (ord($rgb{2}) << 16) + (ord($rgb{1}) << 8) + ord($rgb{0}); |
||||
$this->m_nColors++; |
||||
} |
||||
|
||||
return true; |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
function toString() |
||||
{ |
||||
$ret = ""; |
||||
|
||||
for($i = 0; $i < $this->m_nColors; $i++) { |
||||
$ret .= |
||||
chr(($this->m_arColors[$i] & 0x000000FF)) . // R |
||||
chr(($this->m_arColors[$i] & 0x0000FF00) >> 8) . // G |
||||
chr(($this->m_arColors[$i] & 0x00FF0000) >> 16); // B |
||||
} |
||||
|
||||
return $ret; |
||||
} |
||||
|
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
function colorIndex($rgb) |
||||
{ |
||||
$rgb = intval($rgb) & 0xFFFFFF; |
||||
$r1 = ($rgb & 0x0000FF); |
||||
$g1 = ($rgb & 0x00FF00) >> 8; |
||||
$b1 = ($rgb & 0xFF0000) >> 16; |
||||
$idx = -1; |
||||
|
||||
for($i = 0; $i < $this->m_nColors; $i++) { |
||||
$r2 = ($this->m_arColors[$i] & 0x000000FF); |
||||
$g2 = ($this->m_arColors[$i] & 0x0000FF00) >> 8; |
||||
$b2 = ($this->m_arColors[$i] & 0x00FF0000) >> 16; |
||||
$d = abs($r2 - $r1) + abs($g2 - $g1) + abs($b2 - $b1); |
||||
|
||||
if(($idx == -1) || ($d < $dif)) { |
||||
$idx = $i; |
||||
$dif = $d; |
||||
} |
||||
} |
||||
|
||||
return $idx; |
||||
} |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////// |
||||
|
||||
class CGIFFILEHEADER |
||||
{ |
||||
var $m_lpVer; |
||||
var $m_nWidth; |
||||
var $m_nHeight; |
||||
var $m_bGlobalClr; |
||||
var $m_nColorRes; |
||||
var $m_bSorted; |
||||
var $m_nTableSize; |
||||
var $m_nBgColor; |
||||
var $m_nPixelRatio; |
||||
var $m_colorTable; |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
// CONSTRUCTOR |
||||
function CGIFFILEHEADER() |
||||
{ |
||||
unSet($this->m_lpVer); |
||||
unSet($this->m_nWidth); |
||||
unSet($this->m_nHeight); |
||||
unSet($this->m_bGlobalClr); |
||||
unSet($this->m_nColorRes); |
||||
unSet($this->m_bSorted); |
||||
unSet($this->m_nTableSize); |
||||
unSet($this->m_nBgColor); |
||||
unSet($this->m_nPixelRatio); |
||||
unSet($this->m_colorTable); |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
function load($lpData, &$hdrLen) |
||||
{ |
||||
$hdrLen = 0; |
||||
|
||||
$this->m_lpVer = substr($lpData, 0, 6); |
||||
if(($this->m_lpVer <> "GIF87a") && ($this->m_lpVer <> "GIF89a")) { |
||||
return false; |
||||
} |
||||
|
||||
$this->m_nWidth = $this->w2i(substr($lpData, 6, 2)); |
||||
$this->m_nHeight = $this->w2i(substr($lpData, 8, 2)); |
||||
if(!$this->m_nWidth || !$this->m_nHeight) { |
||||
return false; |
||||
} |
||||
|
||||
$b = ord(substr($lpData, 10, 1)); |
||||
$this->m_bGlobalClr = ($b & 0x80) ? true : false; |
||||
$this->m_nColorRes = ($b & 0x70) >> 4; |
||||
$this->m_bSorted = ($b & 0x08) ? true : false; |
||||
$this->m_nTableSize = 2 << ($b & 0x07); |
||||
$this->m_nBgColor = ord(substr($lpData, 11, 1)); |
||||
$this->m_nPixelRatio = ord(substr($lpData, 12, 1)); |
||||
$hdrLen = 13; |
||||
|
||||
if($this->m_bGlobalClr) { |
||||
$this->m_colorTable = new CGIFCOLORTABLE(); |
||||
if(!$this->m_colorTable->load(substr($lpData, $hdrLen), $this->m_nTableSize)) { |
||||
return false; |
||||
} |
||||
$hdrLen += 3 * $this->m_nTableSize; |
||||
} |
||||
|
||||
return true; |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
function w2i($str) |
||||
{ |
||||
return ord(substr($str, 0, 1)) + (ord(substr($str, 1, 1)) << 8); |
||||
} |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////// |
||||
|
||||
class CGIFIMAGEHEADER |
||||
{ |
||||
var $m_nLeft; |
||||
var $m_nTop; |
||||
var $m_nWidth; |
||||
var $m_nHeight; |
||||
var $m_bLocalClr; |
||||
var $m_bInterlace; |
||||
var $m_bSorted; |
||||
var $m_nTableSize; |
||||
var $m_colorTable; |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
// CONSTRUCTOR |
||||
function CGIFIMAGEHEADER() |
||||
{ |
||||
unSet($this->m_nLeft); |
||||
unSet($this->m_nTop); |
||||
unSet($this->m_nWidth); |
||||
unSet($this->m_nHeight); |
||||
unSet($this->m_bLocalClr); |
||||
unSet($this->m_bInterlace); |
||||
unSet($this->m_bSorted); |
||||
unSet($this->m_nTableSize); |
||||
unSet($this->m_colorTable); |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
function load($lpData, &$hdrLen) |
||||
{ |
||||
$hdrLen = 0; |
||||
|
||||
$this->m_nLeft = $this->w2i(substr($lpData, 0, 2)); |
||||
$this->m_nTop = $this->w2i(substr($lpData, 2, 2)); |
||||
$this->m_nWidth = $this->w2i(substr($lpData, 4, 2)); |
||||
$this->m_nHeight = $this->w2i(substr($lpData, 6, 2)); |
||||
|
||||
if(!$this->m_nWidth || !$this->m_nHeight) { |
||||
return false; |
||||
} |
||||
|
||||
$b = ord($lpData{8}); |
||||
$this->m_bLocalClr = ($b & 0x80) ? true : false; |
||||
$this->m_bInterlace = ($b & 0x40) ? true : false; |
||||
$this->m_bSorted = ($b & 0x20) ? true : false; |
||||
$this->m_nTableSize = 2 << ($b & 0x07); |
||||
$hdrLen = 9; |
||||
|
||||
if($this->m_bLocalClr) { |
||||
$this->m_colorTable = new CGIFCOLORTABLE(); |
||||
if(!$this->m_colorTable->load(substr($lpData, $hdrLen), $this->m_nTableSize)) { |
||||
return false; |
||||
} |
||||
$hdrLen += 3 * $this->m_nTableSize; |
||||
} |
||||
|
||||
return true; |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
function w2i($str) |
||||
{ |
||||
return ord(substr($str, 0, 1)) + (ord(substr($str, 1, 1)) << 8); |
||||
} |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////// |
||||
|
||||
class CGIFIMAGE |
||||
{ |
||||
var $m_disp; |
||||
var $m_bUser; |
||||
var $m_bTrans; |
||||
var $m_nDelay; |
||||
var $m_nTrans; |
||||
var $m_lpComm; |
||||
var $m_gih; |
||||
var $m_data; |
||||
var $m_lzw; |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
function CGIFIMAGE() |
||||
{ |
||||
unSet($this->m_disp); |
||||
unSet($this->m_bUser); |
||||
unSet($this->m_bTrans); |
||||
unSet($this->m_nDelay); |
||||
unSet($this->m_nTrans); |
||||
unSet($this->m_lpComm); |
||||
unSet($this->m_data); |
||||
$this->m_gih = new CGIFIMAGEHEADER(); |
||||
$this->m_lzw = new CGIFLZW(); |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
function load($data, &$datLen) |
||||
{ |
||||
$datLen = 0; |
||||
|
||||
while(true) { |
||||
$b = ord($data{0}); |
||||
$data = substr($data, 1); |
||||
$datLen++; |
||||
|
||||
switch($b) { |
||||
case 0x21: // Extension |
||||
$len = 0; |
||||
if(!$this->skipExt($data, $len)) { |
||||
return false; |
||||
} |
||||
$datLen += $len; |
||||
break; |
||||
|
||||
case 0x2C: // Image |
||||
// LOAD HEADER & COLOR TABLE |
||||
$len = 0; |
||||
if(!$this->m_gih->load($data, $len)) { |
||||
return false; |
||||
} |
||||
$data = substr($data, $len); |
||||
$datLen += $len; |
||||
|
||||
// ALLOC BUFFER |
||||
$len = 0; |
||||
|
||||
if(!($this->m_data = $this->m_lzw->deCompress($data, $len))) { |
||||
return false; |
||||
} |
||||
|
||||
$data = substr($data, $len); |
||||
$datLen += $len; |
||||
|
||||
if($this->m_gih->m_bInterlace) { |
||||
$this->deInterlace(); |
||||
} |
||||
|
||||
return true; |
||||
|
||||
case 0x3B: // EOF |
||||
default: |
||||
return false; |
||||
} |
||||
} |
||||
return false; |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
function skipExt(&$data, &$extLen) |
||||
{ |
||||
$extLen = 0; |
||||
|
||||
$b = ord($data{0}); |
||||
$data = substr($data, 1); |
||||
$extLen++; |
||||
|
||||
switch($b) { |
||||
case 0xF9: // Graphic Control |
||||
$b = ord($data{1}); |
||||
$this->m_disp = ($b & 0x1C) >> 2; |
||||
$this->m_bUser = ($b & 0x02) ? true : false; |
||||
$this->m_bTrans = ($b & 0x01) ? true : false; |
||||
$this->m_nDelay = $this->w2i(substr($data, 2, 2)); |
||||
$this->m_nTrans = ord($data{4}); |
||||
break; |
||||
|
||||
case 0xFE: // Comment |
||||
$this->m_lpComm = substr($data, 1, ord($data{0})); |
||||
break; |
||||
|
||||
case 0x01: // Plain text |
||||
break; |
||||
|
||||
case 0xFF: // Application |
||||
break; |
||||
} |
||||
|
||||
// SKIP DEFAULT AS DEFS MAY CHANGE |
||||
$b = ord($data{0}); |
||||
$data = substr($data, 1); |
||||
$extLen++; |
||||
while($b > 0) { |
||||
$data = substr($data, $b); |
||||
$extLen += $b; |
||||
$b = ord($data{0}); |
||||
$data = substr($data, 1); |
||||
$extLen++; |
||||
} |
||||
return true; |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
function w2i($str) |
||||
{ |
||||
return ord(substr($str, 0, 1)) + (ord(substr($str, 1, 1)) << 8); |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
function deInterlace() |
||||
{ |
||||
$data = $this->m_data; |
||||
|
||||
for($i = 0; $i < 4; $i++) { |
||||
switch($i) { |
||||
case 0: |
||||
$s = 8; |
||||
$y = 0; |
||||
break; |
||||
|
||||
case 1: |
||||
$s = 8; |
||||
$y = 4; |
||||
break; |
||||
|
||||
case 2: |
||||
$s = 4; |
||||
$y = 2; |
||||
break; |
||||
|
||||
case 3: |
||||
$s = 2; |
||||
$y = 1; |
||||
break; |
||||
} |
||||
|
||||
for(; $y < $this->m_gih->m_nHeight; $y += $s) { |
||||
$lne = substr($this->m_data, 0, $this->m_gih->m_nWidth); |
||||
$this->m_data = substr($this->m_data, $this->m_gih->m_nWidth); |
||||
|
||||
$data = |
||||
substr($data, 0, $y * $this->m_gih->m_nWidth) . |
||||
$lne . |
||||
substr($data, ($y + 1) * $this->m_gih->m_nWidth); |
||||
} |
||||
} |
||||
|
||||
$this->m_data = $data; |
||||
} |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////// |
||||
|
||||
class CGIF |
||||
{ |
||||
var $m_gfh; |
||||
var $m_lpData; |
||||
var $m_img; |
||||
var $m_bLoaded; |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
|
||||
// CONSTRUCTOR |
||||
function CGIF() |
||||
{ |
||||
$this->m_gfh = new CGIFFILEHEADER(); |
||||
$this->m_img = new CGIFIMAGE(); |
||||
$this->m_lpData = ""; |
||||
$this->m_bLoaded = false; |
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////// |
||||
function ClearData() { |
||||
$this->m_lpData = ''; |
||||
unSet($this->m_img->m_data); |
||||
unSet($this->m_img->m_lzw->Next); |
||||
unSet($this->m_img->m_lzw->Vals); |
||||
unSet($this->m_img->m_lzw->Stack); |
||||
unSet($this->m_img->m_lzw->Buf); |
||||
} |
||||
|
||||
function loadFile(&$data, $iIndex) |
||||
{ |
||||
if($iIndex < 0) { |
||||
return false; |
||||
} |
||||
$this->m_lpData = $data; |
||||
|
||||
// GET FILE HEADER |
||||
$len = 0; |
||||
if(!$this->m_gfh->load($this->m_lpData, $len)) { |
||||
return false; |
||||
} |
||||
|
||||
$this->m_lpData = substr($this->m_lpData, $len); |
||||
|
||||
do { |
||||
$imgLen = 0; |
||||
if(!$this->m_img->load($this->m_lpData, $imgLen)) { |
||||
return false; |
||||
} |
||||
$this->m_lpData = substr($this->m_lpData, $imgLen); |
||||
} |
||||
while($iIndex-- > 0); |
||||
|
||||
$this->m_bLoaded = true; |
||||
return true; |
||||
} |
||||
|
||||
} |
||||
|
||||
/////////////////////////////////////////////////////////////////////////////////////////////////// |
||||
|
||||
?> |
@ -1,6 +0,0 @@ |
||||
<html> |
||||
<head> |
||||
</head> |
||||
<body> |
||||
</body> |
||||
</html> |
@ -1,403 +0,0 @@ |
||||
<?php |
||||
|
||||
class indic { |
||||
|
||||
function indic() { |
||||
|
||||
} |
||||
|
||||
|
||||
function substituteIndic($earr, $lang, $font, $useSubsets) { |
||||
global $voltdata; |
||||
|
||||
if (!isset($voltdata[$font])) { |
||||
include_once(MPDF_FONTPATH.$font.'.volt.php'); |
||||
$voltdata[$font] = $volt; |
||||
} |
||||
|
||||
// These Indic fonts don't contain a-z or A-Z in Truetype files (added manually for subsets) |
||||
// Replace with ? |
||||
if (!$useSubsets) { |
||||
foreach($earr as $eid=>$char) { |
||||
if (($earr[$eid] > 64 && $earr[$eid] < 91) || ($earr[$eid] > 96 && $earr[$eid] < 123)) { $earr[$eid] = 63; } |
||||
} |
||||
} |
||||
foreach($earr as $eid=>$char) { |
||||
$earr[$eid] = sprintf("%04s", strtoupper(dechex($char))); |
||||
} |
||||
$vstr = "0020 ".implode(" ",$earr)." 0020"; |
||||
|
||||
//============================ |
||||
// Common Indic Punctuation marks |
||||
// If NOT devanagari |
||||
if ($lang!='hi') { |
||||
$vstr = preg_replace('/0964/','007C', $vstr); // U+0964 replace with "|" |
||||
$vstr = preg_replace('/0965/','007C 007C', $vstr); // U+0964 replace with "|" |
||||
} |
||||
//============================ |
||||
// Tamil numeral for Zero missing Added mPDF 4.2 |
||||
if ($lang=='ta') { |
||||
$vstr = preg_replace('/0BE6/','0030', $vstr); // U+0BEB replace with "0" |
||||
} |
||||
|
||||
//============================ |
||||
// Re-order vowels |
||||
|
||||
// DEVANAGARI vowel sign matraI[093F] before consonant |
||||
if ($lang=='hi') { |
||||
$prebasedvowels = "(093F)"; |
||||
$nukta = "093C"; |
||||
$halant = "094D"; |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$prebasedvowels.'/','\\2 \\1', $vstr); // vowel sign pre-based shift left |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$prebasedvowels.' '.$nukta.'/','\\2 \\1 '.$nukta, $vstr); // before NUKTA |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$halant.' '.$prebasedvowels.'/','\\2 \\1 '.$halant, $vstr); // before CHAR HALANT == VIRAMA |
||||
} |
||||
|
||||
// BENGALI vowels [09BF 09C7 09C8] |
||||
else if ($lang=='bn') { |
||||
// BENGALI double-part vowels [09CB 09C7 09BE][09CC 09C7 09D7] |
||||
$vstr = preg_replace('/09CB/','09C7 09BE', $vstr); // convert to 2 parts |
||||
$vstr = preg_replace('/09CC/','09C7 09D7', $vstr); // 09C7 pre-based is then shifted below |
||||
$prebasedvowels = "(09BF|09C7|09C8)"; |
||||
$nukta = "09BC"; |
||||
$halant = "09CD"; |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$prebasedvowels.'/','\\2 \\1', $vstr); // vowel sign pre-based shift left |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$prebasedvowels.' '.$nukta.'/','\\2 \\1 '.$nukta, $vstr); // before NUKTA |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$halant.' '.$prebasedvowels.'/','\\2 \\1 '.$halant, $vstr); // before CHAR HALANT |
||||
} |
||||
|
||||
// GUJARATI pre-based vowel [0ABF] |
||||
else if ($lang=='gu') { |
||||
$prebasedvowels = "(0ABF)"; |
||||
$nukta = "0ABC"; |
||||
$halant = "0ACD"; |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$prebasedvowels.'/','\\2 \\1', $vstr); // vowel sign pre-based shift left |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$prebasedvowels.' '.$nukta.'/','\\2 \\1 '.$nukta, $vstr); // before NUKTA |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$halant.' '.$prebasedvowels.'/','\\2 \\1 '.$halant, $vstr); // before CHAR HALANT |
||||
} |
||||
|
||||
// GURMUKHI/PUNJABI pre-based vowel [0ABF] |
||||
else if ($lang=='pa') { |
||||
$prebasedvowels = "(0A3F)"; |
||||
$nukta = "0A3C"; |
||||
$halant = "0A4D"; |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$prebasedvowels.'/','\\2 \\1', $vstr); // vowel sign pre-based shift left |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$prebasedvowels.' '.$nukta.'/','\\2 \\1 '.$nukta, $vstr); // before NUKTA |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$halant.' '.$prebasedvowels.'/','\\2 \\1 '.$halant, $vstr); // before CHAR HALANT |
||||
} |
||||
|
||||
// TAMIL pre-based vowel [0ABF] |
||||
else if ($lang=='ta') { |
||||
// Shrii (Shree) |
||||
$vstr = preg_replace('/0BB6 0BCD 0BB0 0BC0/','E04B', $vstr); |
||||
|
||||
// TAMIL double-part vowels [0BCA 0BC6 0BBE][0BCB 0BC7 0BBE][0BCC 0BC6 0BD7] |
||||
$vstr = preg_replace('/0BCA/','0BC6 0BBE', $vstr); // convert to 2 parts |
||||
$vstr = preg_replace('/0BCB/','0BC7 0BBE', $vstr); // pre-based is then shifted below |
||||
$vstr = preg_replace('/0BCC/','0BC6 0BD7', $vstr); |
||||
$prebasedvowels = "(0BC6|0BC7|0BC8)"; |
||||
// No nukta |
||||
$halant = "0BCD"; // Doesn't seem to move most in front of halanted consonants |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$prebasedvowels.'/','\\2 \\1', $vstr); // vowel sign pre-based shift left |
||||
// ? Only for special case KSS (already moved to left of 0BB7) |
||||
$vstr = preg_replace('/0B95 '.$halant.' '.$prebasedvowels.' 0BB7/','\\1 0B95 '.$halant.' 0BB7', $vstr); |
||||
} |
||||
|
||||
// ORIYA |
||||
else if ($lang=='or') { |
||||
// ORIYA double-part vowels [] |
||||
$vstr = preg_replace('/0B48/','0B47 0B56', $vstr); // 2-part Vowel |
||||
$vstr = preg_replace('/0B4B/','0B47 0B3E', $vstr); // 2-part Vowel |
||||
$vstr = preg_replace('/0B4C/','0B47 0B57', $vstr); // 2-part Vowel |
||||
$orprebasedvowels = "(0B47)"; |
||||
// No nukta |
||||
$halant = "0B4D"; |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$orprebasedvowels.'/','\\2 \\1', $vstr); // vowel sign pre-based shift left |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$halant.' '.$orprebasedvowels.'/','\\2 \\1 '.$halant, $vstr); // before CHAR HALANT |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$halant.' '.$orprebasedvowels.'/','\\2 \\1 '.$halant, $vstr); // before CHAR HALANT |
||||
} |
||||
|
||||
// MALAYALAM |
||||
else if ($lang=='ml') { |
||||
// Chillus - old forms - remove ZWNJ after |
||||
// This font Volt rules recognises e.g. "Na Halant(Virama)" as ChilluN |
||||
$vstr = preg_replace('/(0D23 0D4D|0D28 0D4D|0D30 0D4D|0D32 0D4D|0D33 0D4D) 200D/','\\1', $vstr); |
||||
// See Chillus in Unicode [http://en.wikipedia.org/wiki/Malayalam_script] |
||||
$vstr = preg_replace('/0D7A/','0D23 0D4D', $vstr); // [mlymChilluNn] |
||||
$vstr = preg_replace('/0D7B/','0D28 0D4D', $vstr); // [mlymChilluN] |
||||
$vstr = preg_replace('/0D7C/','0D30 0D4D', $vstr); // [mlymChilluR] |
||||
$vstr = preg_replace('/0D7D/','0D32 0D4D', $vstr); // [mlymChilluL] |
||||
$vstr = preg_replace('/0D7E/','0D33 0D4D', $vstr); // [mlymChilluLl] |
||||
/* |
||||
// Chillus - 0D7A-0D7E not in font directly, but as E005-E009 |
||||
$vstr = preg_replace('/0D23 0D4D 200D/','0D7A', $vstr); |
||||
$vstr = preg_replace('/0D28 0D4D 200D/','0D7B', $vstr); |
||||
$vstr = preg_replace('/0D30 0D4D 200D/','0D7C', $vstr); |
||||
$vstr = preg_replace('/0D32 0D4D 200D/','0D7D', $vstr); |
||||
$vstr = preg_replace('/0D33 0D4D 200D/','0D7E', $vstr); |
||||
|
||||
$vstr = preg_replace('/0D7F/','E004', $vstr); // [mlymChilluK] |
||||
$vstr = preg_replace('/0D7A/','E005', $vstr); // [mlymChilluNn] |
||||
$vstr = preg_replace('/0D7B/','E006', $vstr); // [mlymChilluN] |
||||
$vstr = preg_replace('/0D7C/','E007', $vstr); // [mlymChilluR] |
||||
$vstr = preg_replace('/0D7D/','E008', $vstr); // [mlymChilluL] |
||||
$vstr = preg_replace('/0D7E/','E009', $vstr); // [mlymChilluLl] |
||||
*/ |
||||
|
||||
// MALAYALAM double-part vowels [] |
||||
$vstr = preg_replace('/0D4A/','0D46 0D3E', $vstr); // 2-part Vowel |
||||
$vstr = preg_replace('/0D4B/','0D47 0D3E', $vstr); // 2-part Vowel |
||||
$vstr = preg_replace('/0D4C/','0D46 0D57', $vstr); // 2-part Vowel |
||||
$mlprebasedvowels = "(0D46|0D47|0D48)"; |
||||
// No nukta |
||||
$halant = "0D4D"; |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$mlprebasedvowels.'/','\\2 \\1', $vstr); // vowel sign pre-based shift left |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$halant.' '.$mlprebasedvowels.'/','\\2 \\1 '.$halant, $vstr); // before CHAR HALANT |
||||
} |
||||
|
||||
// TELUGU |
||||
else if ($lang=='te') { |
||||
// TELUGU double-part vowels [0C48 -> 0C46 0C56] |
||||
$vstr = preg_replace('/0C48/','0C46 0C56', $vstr); // 2-part Vowel |
||||
$prebasedvowels = "(0C46)"; |
||||
$abvvowels = "(0C3E|0C3F|0C40|0C46|0C47|0C4A|0C4B|0C4C|0C55)"; |
||||
// No nukta |
||||
$halant = "0C4D"; |
||||
$tefullforms = "0C15|0C17|0C18|0C1A|0C1B|0C1C|0C1D|0C20|0C21|0C22|0C24|0C25|0C26|0C27|0C28|0C2A|0C2B|0C2D|0C2E|0C2F|0C30|0C33|0C35|0C36|0C37|0C38|0C39|E028|E029|E02A|E02B|E078|E07A|E07B"; |
||||
$vstr = preg_replace('/('.$tefullforms .') '.$halant.' ('.$tefullforms .') '.$abvvowels .'/','\\1 \\3 '.$halant.' \\2', $vstr); // before HALANT |
||||
} |
||||
|
||||
|
||||
// KANNADA |
||||
else if ($lang=='kn') { |
||||
// KANNADA double-part vowels [0CC8 -> 0CC6 0CD6] |
||||
$vstr = preg_replace('/0CC0/','0CBF 0CD5', $vstr); // 2-part Vowel |
||||
$vstr = preg_replace('/0CC7/','0CC6 0CD5', $vstr); // 2-part Vowel |
||||
$vstr = preg_replace('/0CC8/','0CC6 0CD6', $vstr); // 2-part Vowel AI - no glyph for single |
||||
$vstr = preg_replace('/0CCA/','0CC6 0CC2', $vstr); // 2-part Vowel |
||||
$vstr = preg_replace('/0CCB/','0CC6 0CC2 0CD5', $vstr); // 2-part Vowel |
||||
$prebasedvowels = "(0CBF|0CC6)"; |
||||
$halant = "0CCD"; |
||||
} |
||||
|
||||
|
||||
//============================ |
||||
|
||||
// SPECIALS |
||||
|
||||
// DEVANAGARI Ra Halant Ra |
||||
if ($lang=='hi') { |
||||
$vstr = preg_replace('/0930 094D 0930/','E05D 0930', $vstr); // Ra Halant Ra => halfRa FullRa |
||||
} |
||||
|
||||
// GUJARATI |
||||
if ($lang=='gu') { |
||||
$vstr = preg_replace('/0AB0 0AC2/','E02E', $vstr); // Ra VowelUu => SpecialForm RaUu |
||||
} |
||||
|
||||
// TELUGU Ra Halant <Consonant> Halant => halfRa Halant<Consonant> Halant |
||||
if ($lang=='te') { |
||||
$vstr = preg_replace('/0C30 0C4D ([A-F0-9]{4}) 0C4D/','E021 0C4D \\1 0C4D', $vstr); |
||||
} |
||||
|
||||
//============================ |
||||
// MAIN BIT FROM VOLT RULES |
||||
foreach($voltdata[$font] AS $rid=>$reps) { |
||||
//echo $vstr.'<br />'; |
||||
$vstr = preg_replace('/'.$reps['match'].'/',$reps['replace'], $vstr); |
||||
} |
||||
//echo $vstr.'<br />'; exit; |
||||
|
||||
|
||||
//============================ |
||||
|
||||
// SPECIALS |
||||
|
||||
// KANNADA |
||||
// <Base> <BelowBase1> [<BelowBase2> ] MatraI -> <Base/MatraI ligature> <Belowbase1> etc |
||||
if ($lang=='kn') { |
||||
$matraI = "0CBF"; |
||||
$knbase = preg_split('/\|/', "0C95|0C96|0C97|0C98|0C9A|0C9B|0C9C|0C9D|0CA0|0CA1|0CA2|0CA3|0CA4|0CA5|0CA6|0CA7|0CA8|0CAA|0CAB|0CAC|0CAD|0CAE|0CAF|0CB0|0CB2|0CB3|0CB5|0CB6|0CB7|0CB8|0CB9|E0A3|E07D|E07E"); |
||||
$knmatraIligature = preg_split('/\|/', "E082|E083|E084|E085|E086|E087|E088|E089|E08A|E08B|E08C|E08D|E08E|E08F|E090|E091|E092|E093|E094|E095|E096|E097|E098|E099|E09A|E09B|E09C|E09D|E09E|E09F|E0A0|E0A4|E0A1|E0A2"); |
||||
$belowbase1 = "E02E|E02F|E030|E031|E032|E033|E034|E035|E036|E037|E038|E039|E03A|E03B|E03C|E03D|E03E|E03F|E040|E041|E042|E043|E044|E045|E046|E047|E048|E049|E04A|E04B|E04C|E04D|E04E|E04F|E050|E081"; |
||||
$belowbase2 = "E052|E053|E054|E055|E056|E057|E058|E059|E05A|E05B|E05C|E05D|E05E|E05F|E060|E061|E062|E063|E064|E065|E066|E067|E068|E069|E06A|E06B|E06C|E06D|E06E|E06F|E070|E071|E072|E073|E074|E081"; |
||||
for ($i=0; $i<count($knbase);$i++) { |
||||
$vstr = preg_replace('/'.$knbase[$i].' ('.$belowbase1.') ('.$belowbase2.') '.$matraI.'/', $knmatraIligature[$i].' \\1 \\2', $vstr); |
||||
$vstr = preg_replace('/'.$knbase[$i].' ('.$belowbase1.') '.$matraI.'/', $knmatraIligature[$i].' \\1', $vstr); |
||||
} |
||||
} |
||||
|
||||
// KANNADA |
||||
// [KanTtaFull] [matraI] => [KanTtaPartial] [matraI] |
||||
if ($lang=='kn') { |
||||
$vstr = preg_replace('/0C9F '.$matraI.'/', 'E015 '.$matraI, $vstr); |
||||
} |
||||
|
||||
// ORIYA |
||||
if ($lang=='or') { |
||||
// SpecialCase Ra[0B30] Halant still left before [oryaFullNnNna] => E00F |
||||
$vstr = preg_replace('/0B30 '.$halant.' E00F/','E00F E069', $vstr); // convert to Reph |
||||
} |
||||
|
||||
//============================ |
||||
// SHIFT REPH |
||||
|
||||
// DEVANAGARI Shift Reph [E015] |
||||
if ($lang=='hi') { |
||||
// FIRSTLY - halfRa = E05D - Change this to Reph [E015] |
||||
$himatchhalfforms = "E043|E044|E045|E046|E047|E048|E049|E04A|E04B|E04C|E04D|E04E|E04F|E050|E051|E052|E053|E054|E055|E056|E057|E058|E059|E05A|E05B|E05C|E05D|E05E|E05F|E060|E061|E062|E063|E064|E065|E066|E067|E068|E069|E06A|E06B|E06C|E06D|E06E|E06F|E070|E071|E072|E073|E074|E075|E076|E077|E078|E079|E07A|E07B|E07C|E07D|E07E|E07F|E080|E081|E082|E083|E084|E085|E086|E087|E088|E089|E08A|E0D3|E0D4|E0D5|E0D6|E0D7|E0D8|E0D9|E0DA|E0DB|E0DC|E0DD|E0DE|E0DF|E0E0|E0E1|E0E2|E0E3|E0E4|E0E5|E0E6|E0E7|E0E8|E0E9|E0EA|E0EB|E0EC|E0ED|E0EE|E0EF|E0F0|E0F1|E0F2|E0F3|E0F4|E0F5|E0F6|E0F7|E0F8|E0F9|E0FA|E0FB|E0FC|E0FD|E0FE|E0FF|E100|E101|E102|E103|E104|E105|E106|E107|E108|E109|E10A|E10B|E10C|E10D|E10E|E10F|E110|E111|E112|E113|E114|E115|E116|E117|E118|E119|E11A|E13D|E13E|E13F|E140|E141|E142|E143|E144|E145"; |
||||
$himatchfullforms = "0915|0916|0917|0918|0919|091A|091B|091C|091D|091E|091F|0920|0921|0922|0923|0924|0925|0926|0927|0928|092A|092B|092C|092D|092E|092F|0930|0932|0933|0935|0936|0937|0938|0939|E028|E029|0958|0959|095A|E02A|E02B|E02C|E02D|095B|E02E|E02F|E030|E031|095C|095D|E032|E033|E034|E035|E036|0929|E037|095E|E038|E039|E03A|095F|0931|E03B|0934|E03C|E03D|E03E|E03F|E040|E041|E042|E08B|E08C|E08D|E08E|E08F|E090|E091|E092|E093|E094|E095|E096|E097|E098|E099|E09A|E09B|E09C|E09D|E09E|E09F|E0A0|E0A1|E0A2|E0A3|E0A4|E0A5|E0A6|E0A7|E0A8|E0A9|E0AA|E0AB|E0AC|E0AD|E0AE|E0AF|E0B0|E0B1|E0B2|E0B3|E0B4|E0B5|E0B6|E0B7|E0B8|E0B9|E0BA|E0BB|E0BC|E0BD|E0BE|E0BF|E0C0|E0C1|E0C2|E0C3|E0C4|E0C5|E0C6|E0C7|E0C8|E0C9|E0CA|E0CB|E0CC|E0CD|E0CE|E0CF|E0D0|E0D1|E0D2|E11E|E11F|E120|E121|E122|E123|E124|E125|E126|E127|E128|E129|E12A|E12B|E12C|E12D|E12E|E12F|E130|E131|E132|E133"; |
||||
$vstr = preg_replace('/E05D ('.$himatchhalfforms.'|'.$himatchfullforms.')/', 'E015 \\1', $vstr); |
||||
|
||||
// Reph = E015 - Shift Right to just after end of syllable |
||||
// FullAllForms + HalfAllForms + 093E matraA |
||||
while(preg_match('/E015 ('.$himatchhalfforms.')/', $vstr)) { |
||||
$vstr = preg_replace('/E015 ('.$himatchhalfforms.')/', '\\1 E015', $vstr); |
||||
} |
||||
$vstr = preg_replace('/E015 ('.$himatchfullforms.')/', '\\1 E015', $vstr); |
||||
|
||||
// Now shift it beyond post-based vowels // ??? Need to add others e.g. 0949,094A,094B,094C + presentation forms like E198 |
||||
$vstr = preg_replace('/E015 093E/', '093E E015', $vstr); |
||||
$vstr = preg_replace('/E015 (0940|E194|E195|E196|E197|E198)/', '\\1 E014', $vstr); // (Small) reph [E014] to Right of matraI |
||||
$vstr = preg_replace('/E015 0947/', '0947 E014', $vstr); // (Small) reph [E014] to Right of matraI |
||||
} |
||||
|
||||
// BENGALI Shift Reph [E068] |
||||
else if ($lang=='bn') { |
||||
$bnfullconjuncts = "E002|E003|E004|E041|E042|E043|E044|E045|E046|E047|E048|E049|E04A|E04B|E04C|E04D|E04E|E04F|E050|E051|E052|E053|E054|E055|E056|E057|E058|E059|E05A|E05B|E05C|E05D|E05E|E05F|E060|E061|E062|E063|E064|E065|E06A|E06B|E06C|E06D|E06E|E06F|E070|E071|E072|E073|E074|E075|E076|E077|E078|E079|E07A|E07B|E07C|E07D|E07E|E07F|E080|E081|E082|E083|E084|E085|E086|E087|E088|E089|E08A|E08B|E08C|E08D|E08E|E08F|E090|E091|E092|E093|E094|E095|E096|E097|E098|E099|E09A|E09B|E09C|E09D|E09E|E09F|E0A0|E0A1|E0A2|E0A3|E0A4|E0A5|E0A6|E0A7|E0A8|E0A9|E0AA|E0AB|E0AC|E0AD|E0AE|E0AF|E0B0|E0B1|E0B2|E0B3|E0B4|E0B5|E0B6|E0B7|E0B8|E0B9|E0BA|E0BB|E0BC|E0BD|E0BE|E0BF|E0C0|E0C1|E0C2|E0C3|E0C4|E0C5|E0C6|E0C7|E0C8|E0C9|E0CA|E0CB|E0CC|E0CD|E0CE|E0CF|E0D0|E0D1|E0D2|E0D3|E0D4|E0D5|E0D6|E0D7|E0D8|E0D9|E0DA|E0DB|E0DC|E0DD|E0DE|E0DF|E0E0|E0E1|E0E2|E0E3|E0E4|E0E5|E0E6|E0E7|E0E8|E0E9|E0EA|E0EB|E0EC|E0ED|E0EE|E0EF|E0F0|E0F1|E0F2|E0F3|E0F4|E0F5|E0F6|E0F7|E0F8|E0F9|E0FA|E0FB|E0FC|E0FD|E0FE|E0FF|E100|E101|E102|E103|E104|E105|E106|E107|E108|E109|E10A|E10B|E10C|E10D|E10E|E10F|E110|E111|E112|E113|E114|E115|E116|E117|E118|E119|E11A|E11B|E11C|E11D|E11E|E11F|E120|E121|E122|E123|E124|E125|E126|E127|E128|E129|E12A|E12B|E12C|E12D|E12E|E12F|E130|E131|E132|E133|E134|E135|E136|E137|E138|E139|E13A|E13B|E13C|E13D|E13E|E13F|E140|E141|E142|E143|E144|E145|E146|E147|E148|E149|E14A|E14B|E14C|E14D|E14E|E14F|E150|E151|E152|E153|E154|E155|E156|E157|E158|E159|E15A|E15B|E15C|E15D|E15E|E15F|E160|E161|E162|E163|E164|E165|E166|E167|E168|E169|E16A|E16B|E16C|E16D|E16E|E16F|E170|E171|E172|E173|E174|E175|E176|E177|E178|E179|E17A|E17B|E17C|E17D|E17E|E17F|E180|E181|E182|E183|E184|E185|E186|E187|E188|E189|E18A|E18B|E18C|E18D|E18E|E18F|E190|E191|E192|E193|E194|E195|E196|E197|E198|E199|E19A"; |
||||
$bnfullcons = "0995|0996|0997|0998|0999|099A|099B|099C|099D|099F|09A0|09A1|09A2|09A3|09A4|09A5|09A6|09A7|09A8|09AA|09AB|09AC|09AD|09AE|09AF|09B0|09B2|09B6|09B7|09B8|09B9|09DC|09DD|09DF"; |
||||
$vstr = preg_replace('/E068 ('.$bnfullconjuncts.'|'.$bnfullcons.')/', '\\1 E068', $vstr); |
||||
// ? Need to shift it beyond post-base vowels 09BE, 09C0, 09D7 haven't found so can't test?? |
||||
$vstr = preg_replace('/E068 (09BE|09C0|09D7)/', '\\1 E068', $vstr); |
||||
} |
||||
|
||||
// GUJARATI Shift Reph [E032] |
||||
else if ($lang=='gu') { |
||||
$gufullforms = "0A95|0A96|0A97|0A98|0A99|0A9A|0A9B|0A9C|0A9D|0A9E|0A9F|0AA0|0AA1|0AA2|0AA3|0AA4|0AA5|0AA6|0AA7|0AA8|0AAA|0AAB|0AAC|0AAD|0AAE|0AAF|0AB0|0AB2|0AB3|0AB5|0AB6|0AB7|0AB8|0AB9|E002|E003|E004|E005|E006|E007|E008|E009|E00A|E00B|E00C|E00D|E00E|E00F|E010|E011|E012|E013|E014|E015|E016|E017|E018|E019|E01A|E01B|E01C|E01D|E01E|E01F|E020|E021|E022|E023|E024|E025|E026|E027|E05E|E05F|E060|E061|E062|E063|E064|E065|E066|E067|E068|E069|E06A|E06B|E06C|E06D|E06E|E06F|E070|E071|E072|E073|E074|E075|E076|E077|E078|E079|E07A|E07B|E07C|E07D|E07E|E07F|E080|E081|E082|E083|E084|E085|E086|E087|E088|E089|E08A|E08B|E08C|E08D|E08E|E08F|E090|E091|E092|E093|E094|E095|E096|E097|E098|E099|E09A|E09B|E09C|E09D|E09E|E09F|E0A0|E0A1|E0A2|E0A3|E0A4|E0A5"; |
||||
$vstr = preg_replace('/E032 ('.$gufullforms.')/', '\\1 E032', $vstr); |
||||
// Now shift it beyond post-based vowels // ??? Need to add others e.g. 0949,094A,094B,094C + presentation forms like E198 |
||||
// ? Need to shift it beyond post-base vowels 0ABE, 0AC0 haven't found so can't test?? |
||||
$vstr = preg_replace('/E032 (0ABE|0AC0)/', '\\1 E032', $vstr); |
||||
} |
||||
|
||||
|
||||
// TELUGU Shift Reph to LEFT [E046|E069|E077] [TelRaSmallOne] => E046 [TelRaSmallTwo] => E069 [TelRaSmallThree] => E077 |
||||
else if ($lang=='te') { |
||||
// tefullforms defined earlier |
||||
$tepartialforms = "E00D|E00E|E00F|E010|E011|E012|E013|E014|E015|E016|E017|E018|E019|E01A|E01B|E01C|E01D|E01E|E01F|E020|E021|E022|E023|E024|E025|E026|E027|E07C|E07D|E07E"; |
||||
$matraligs = "E07F|E080|E081|E082|E083|E084|E085|E086|E087|E088|E089|E08A|E08B|E08C|E08D|E08E|E08F|E090|E091|E092|E093|E094|E095|E096|E097|E098|E099|E09A|E09B|E09C|E09D|E09E|E09F|E0A0|E0A1|E0A2|E0A3|E0A4|E0A5|E0A6|E0A7|E0A8|E0A9|E0AA|E0AB|E0AC|E0AD|E0AE|E0AF"; |
||||
$tevowels = "0C3E|0C3F|0C40|0C46|0C47|0C56|0C4A|0C4B|0C4C" |
||||
."|0C41|0C42|0C43|0C44"; // post matras |
||||
$vstr = preg_replace('/('.$tevowels.') (E046|E069|E077)/', '\\2 \\1', $vstr); |
||||
while(preg_match('/('.$tepartialforms.') (E046|E069|E077)/', $vstr)) { |
||||
$vstr = preg_replace('/('.$tepartialforms.') (E046|E069|E077)/', '\\2 \\1', $vstr); |
||||
} |
||||
$vstr = preg_replace('/('.$tefullforms .'|'.$matraligs.') (E046|E069|E077)/', '\\2 \\1', $vstr); |
||||
} |
||||
|
||||
|
||||
// KANNADA Shift Reph to RIGHT [E00B] |
||||
else if ($lang=='kn') { |
||||
$knfullforms = "0C95|0C96|0C97|0C98|0C99|0C9A|0C9B|0C9C|0C9D|0C9E|0C9F|0CA0|0CA1|0CA2|0CA3|0CA4|0CA5|0CA6|0CA7|0CA8|0CAA|0CAB|0CAC|0CAD|0CAE|0CAF|0CB0|0CB1|0CB2|0CB3|0CB5|0CB6|0CB7|0CB8|0CB9|E07D|E07E|E0A3"; |
||||
$knpartialforms = "E00C|E00D|E00E|E00F|E010|E011|E012|E013|E014|0C9E|E015|E016|E017|E018|E019|E01A|E01B|E01C|E01D|E01E|E01F|E020|E021|E022|E023|E024|E025|E026|E027|E028|E029|E02A|E02B|E02C|E02D|E07F"; |
||||
while(preg_match('/E00B ('.$knpartialforms.')/', $vstr)) { |
||||
$vstr = preg_replace('/E00B ('.$knpartialforms.')/', '\\1 E00B', $vstr); |
||||
} |
||||
$vstr = preg_replace('/E00B ('.$knfullforms.')/', '\\1 E00B', $vstr); |
||||
// ? Need to shift it beyond post-base vowels + presentation forms haven't found so can't test?? |
||||
$knvowels = "0CBE|0CC0|0CC1|0CC2|0CC3|0CC4|0CC7|0CC8|0CCA|0CCB|0CD5|0CD6"; |
||||
$vstr = preg_replace('/E00B ('.$knvowels.')/', '\\1 E00B', $vstr); |
||||
} |
||||
|
||||
|
||||
// ORIYA Shift Reph to RIGHT [E069|E06A|E06B|E06C] |
||||
else if ($lang=='or') { |
||||
$orrephs = "E069|E06A|E06B|E06C"; |
||||
$orfullforms = "0B15|0B16|0B17|0B18|0B19|0B1A|0B1B|0B1C|0B1D|0B1E|0B1F|0B20|0B21|0B22|0B23|0B24|0B25|0B26|0B27|0B28|0B29|0B2A|0B2B|0B2C|0B2D|0B2E|0B2F|0B30|0B31|0B32|0B33|0B34|0B35|0B36|0B37|0B38|E003|E004|E005|E006|E007|E008|E009|E00A|E00B|E00C|E00D|E00E|E00F|E010|E011|E012|E013|E014|E015|E016|E017|E018|E019|E01A|E01B|E01C|E01D|E01E|E01F|E020|E021|E022|E023|E024|E025|E026|E027|E028|E029|E02A|E02B|E02C|E02D|E02E|E02F|E030|E031|E032|E033|E034|E035|E036|E037"; |
||||
// E123 - E147 FullHalant forms ? add to FullForms |
||||
$orpartialforms = "E090|E091|E092|E093|E094|E095|E096|E097|E098|E099|E09A|E09B|E09C|E09D|E09E|E09F|E0A0|E0A1|E0A2|E0A3|E0A4|E0A5|E0A6|E0A7|E0A8|E0A9|E0AA|E0AB|E0AC|E0AD|E0AE|E0AF|E0B0|E0B1|E0B2|E0B3|E0B4|E0B5|E0B6|E0B7|E0B8|E0B9|E0BA|E0BB|E0BC|E0BD|E0BE|E0BF|E0C0|E0C1|E0C2|E0C3|E0C4|E0C5|E0C6|E0C7|E0C8|E0C9|E0CA|E0CB|E0CC|E0CD|E0CE|E0CF|E0D0|E0D1|E0D2|E0D3|E0D4|E0D5|E0D6|E0D7|E0D8|E0D9|E0DA|E0DB|E0DC|E0DD|E0DE|E0DF|E0E0|E0E1|E0E2|E0E3|E0E4|E0E5|E0E6|E0E7|E0E8|E0E9|E0EA|E0EB|E0EC|E0ED|E0EE|E0EF|E0F0|E0F1|E0F2|E0F3|E0F4|E0F5"; |
||||
|
||||
// Combined MatraIReph[E06D] split [0B3F & E069] to allow reph to be shifted forwards |
||||
$vstr = preg_replace('/('.$orfullforms.') E06D ('.$orfullforms.') 0B3E/', '\\1 0B3F E069 \\2 0B3E', $vstr); |
||||
|
||||
|
||||
while(preg_match('/('.$orrephs.') ('.$orpartialforms.')/', $vstr)) { |
||||
$vstr = preg_replace('/('.$orrephs.') ('.$orpartialforms.')/', '\\2 \\1', $vstr); |
||||
} |
||||
$vstr = preg_replace('/('.$orrephs.') ('.$orfullforms.')/', '\\2 \\1', $vstr); |
||||
|
||||
|
||||
// Combine Reph and MatraI |
||||
$vstr = preg_replace('/E069 0B3F/', 'E06D', $vstr); // Reph and MatraI -> MatraIReph |
||||
$vstr = preg_replace('/E06A 0B3F/', 'E06E', $vstr); // Reph and MatraI -> MatraIReph |
||||
$vstr = preg_replace('/E06B 0B3F/', 'E06F', $vstr); // Reph and MatraI -> MatraIReph |
||||
} |
||||
|
||||
|
||||
// MALAYALAM Shift Reph to LEFT [E00E] (mlylmRaVattu) |
||||
else if ($lang=='ml') { |
||||
$halant = "0D4D"; |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$halant.' 0D30/','E00E \\1', $vstr); // 0D30 = Ra |
||||
$vstr = preg_replace('/([A-F0-9]{4}) '.$halant.' '.$mlprebasedvowels .' 0D30/','\\2 E00E \\1', $vstr); // 0D30 = Ra |
||||
|
||||
$mlfullforms = "0D15|0D16|0D17|0D18|0D19|0D1A|0D1B|0D1C|0D1D|0D1E|0D1F|0D20|0D21|0D22|0D23|0D24|0D25|0D26|0D27|0D28|0D2A|0D2B|0D2C|0D2D|0D2E|0D2F|0D30|0D31|0D32|0D33|0D34|0D35|0D36|0D37|0D38|0D39" |
||||
."|E010|E011|E012|E013|E014|E015|E016|E017|E018|E019|E01A|E01B|E01C|E01D|E01E|E01F|E020|E021|E022|E023|E024|E025|E026|E027|E028|E029|E02A|E02B|E02C|E02D|E02E|E02F|E030|E031|E032|E033|E034|E035|E036|E037|E038|E039|E03A|E03B|E03C|E03D|E03E|E03F|E040|E041|E042|E043|E044|E045|E046|E047|E048|E049|E04A|E04B|E04C|E04D|E04E|E04F|E050|E051|E052|E053|E054|E055|E056|E057|E058|E059|E05A|E05B|E05C|E05D|E05E|E05F|E060|E061|E062|E063|E064|E065|E066|E067|E068|E069|E06A|E06B|E06C|E06D|E06E|E06F|E070|E071|E072|E073|E074|E075|E076|E077|E078|E079|E07A|E07B|E07C|E07D"; |
||||
// = FullConsonants + FullConjuncts |
||||
$vstr = preg_replace('/('.$mlfullforms.') E00E/', 'E00E \\1', $vstr); |
||||
} |
||||
|
||||
//============================ |
||||
|
||||
// SHIFT post-based vowels to Left of SmallForms (NOT to left of full forms) |
||||
|
||||
// TELUGU Shift |
||||
if ($lang=='te') { |
||||
// NB $tevowels defined above |
||||
// NB $tefullforms defined above |
||||
$tebelowbase1 = "E02C|E02D|E02E|E02F|E030|E031|E032|E033|E034|E035|E036|E037|E038|E039|E03A|E03B|E03C|E03D|E03E|E03F|E040|E041|E042|E043|E044|E045|E046|E047|E048|E049|E04A|E04B|E04C|E04D|E04E"; //'Small1KaToHa' |
||||
$tebelowbase2 = "E04F|E050|E051|E052|E053|E054|E055|E056|E057|E058|E059|E05A|E05B|E05C|E05D|E05E|E05F|E060|E061|E062|E063|E064|E065|E066|E067|E068|E069|E06A|E06B|E06C|E06D|E06E|E06F|E070|E071"; // 'Small2KaToHa' |
||||
$vstr = preg_replace('/('.$tebelowbase2.') ('.$tevowels.')/', '\\2 \\1', $vstr); |
||||
$vstr = preg_replace('/('.$tebelowbase1.') ('.$tevowels.')/', '\\2 \\1', $vstr); |
||||
} |
||||
|
||||
|
||||
// KANNADA Shift |
||||
else if ($lang=='kn') { |
||||
$knvowels = "0CBE|0CC0|0CC1|0CC2|0CC3|0CC4|0CC7|0CC8|0CCA|0CCB|0CD5|0CD6" |
||||
."|E082|E083|E084|E085|E086|E087|E088|E089|E08A|E08B|E08C|E08D|E08E|E08F|E090|E091|E092|E093|E094|E095|E096|E097|E098|E099|E09A|E09B|E09C|E09D|E09E|E09F|E0A0|E0A1|E0A2|E0A3|E0A4|E0A5|E0A6|E0A7|E0A8|E0A9|E0AA|E0AB" |
||||
."|E004|E007|E008|E009|E00A"; |
||||
// NB $kannvowels defined above |
||||
// NB $fullforms defined above |
||||
// $belowbase1/2 defined above |
||||
$vstr = preg_replace('/('.$belowbase2.') ('.$knvowels.')/', '\\2 \\1', $vstr); |
||||
$vstr = preg_replace('/('.$belowbase1.') ('.$knvowels.')/', '\\2 \\1', $vstr); |
||||
//$vstr = preg_replace('/('.$fullforms.') ('.$knvowels.')/', '\\2 \\1', $vstr); |
||||
} |
||||
|
||||
|
||||
|
||||
//============================ |
||||
// Clear unwanted ZWJ, ZWNJ |
||||
// MALAYALAM |
||||
if ($lang=='ml') { |
||||
$vstr = preg_replace('/(200C|200D) /','', $vstr); |
||||
} |
||||
|
||||
//============================ |
||||
// END & PUT IT BACK TOGETHER |
||||
$vstr = preg_replace('/^0020 (.*) 0020$/', '\\1', $vstr); |
||||
|
||||
$varr = explode(" ",$vstr); |
||||
$e = ''; |
||||
foreach($varr AS $v) { |
||||
$e.=code2utf(hexdec($v)); |
||||
} |
||||
//============================ |
||||
|
||||
return $e; |
||||
} |
||||
|
||||
|
||||
} |
||||
|
||||
?> |
File diff suppressed because it is too large
Load Diff
@ -1,139 +0,0 @@ |
||||
<?php |
||||
|
||||
$excl = array( 'TABLES', 'LISTS', 'IMAGES-CORE', |
||||
'IMAGES-WMF', 'TABLES-ADVANCED-BORDERS', 'UNICODE-FONTS', 'HTMLHEADERS-FOOTERS', 'COLUMNS', 'TOC', 'INDEX', 'BOOKMARKS', 'BARCODES', 'FORMS', 'WATERMARK', 'RTL', 'INDIC', 'CJK', 'ANNOTATIONS', 'GRADIENTS', 'BACKGROUND-IMAGES', 'CSS-FLOAT', 'CSS-IMAGE-FLOAT', 'CSS-POSITION', 'CSS-PAGE', 'BORDER-RADIUS', 'HYPHENATION', 'ENCRYPTION', 'DIRECTW', 'PROGRESS-BAR', 'IMPORTS'); |
||||
|
||||
|
||||
// *DIRECTW* = Write, WriteText, WriteCell, Text, Shaded_box, AutosizeText |
||||
// IMAGES-CORE = [PNG, GIF, and JPG] NB background-images and watermark images |
||||
|
||||
|
||||
// Text is marked in mpdf_source.php with e.g. : |
||||
/*-- TABLES-ADVANCED-BORDERS --*/ |
||||
/*-- END TABLES-ADVANCED-BORDERS --*/ |
||||
// *TABLES-ADVANCED-BORDERS* |
||||
|
||||
|
||||
if (!isset($_POST['generate']) || $_POST['generate']!='generate') { |
||||
|
||||
|
||||
if (!file_exists('mpdf_source.php')) { |
||||
die("ERROR - Could not find mpdf_source.php file in current directory. Please rename mpdf.php as mpdf_source.php"); |
||||
} |
||||
|
||||
|
||||
|
||||
|
||||
echo '<html> |
||||
<head> |
||||
<script language=javascript> |
||||
checked=false; |
||||
function checkedAll (frm1) { |
||||
var aa= document.getElementById("frm1"); |
||||
if (checked == false) |
||||
{ |
||||
checked = true |
||||
} |
||||
else |
||||
{ |
||||
checked = false |
||||
} |
||||
for (var i =0; i < aa.elements.length; i++) |
||||
{ |
||||
aa.elements[i].checked = checked; |
||||
} |
||||
} |
||||
</script> |
||||
</head> |
||||
<body> |
||||
<p><span style="color:red; font-weight: bold;">WARNING</span>: This utility will OVERWRITE mpdf.php file in the current directory.</p> |
||||
<p>Select the functions you wish to INCLUDE in your mpdf.php program. When you click generate, a new mpdf.php file will be written to the current directory.</p> |
||||
<div><b>Notes</b> |
||||
<ul> |
||||
<li>For WMF Images, you must include both IMAGES-CORE and IMAGES-WMF</li> |
||||
<li>JPG, PNG and JPG images are supported with IMAGES-CORE</li> |
||||
<li>IMAGES-CORE are required for BACKGROUND-IMAGES or WATERMARKS to work</li> |
||||
<li>DIRECTW includes the functions to Write directly to the PDF file e.g. Write, WriteText, WriteCell, Text, Shaded_box, AutosizeText</li> |
||||
</ul> |
||||
</div> |
||||
<input type="checkbox" name="checkall" onclick="checkedAll(frm1);"> <i>Select/Unselect All</i><br /><br /> |
||||
|
||||
<form id="frm1" action="compress.php" method="POST"> |
||||
'; |
||||
foreach($excl AS $k=>$ex) { |
||||
echo '<input type="checkbox" value="1" name="inc['.$ex.']"'; |
||||
if ($k < 3) { |
||||
echo ' checked="checked"'; |
||||
} |
||||
echo ' /> '.$ex.'<br />'; |
||||
} |
||||
|
||||
echo '<br /> |
||||
<input type="submit" name="generate" value="generate" /> |
||||
</form> |
||||
</body> |
||||
</html>'; |
||||
exit; |
||||
} |
||||
|
||||
$inc = $_POST['inc']; |
||||
if (is_array($inc) && count($inc)>0 ) { |
||||
foreach($inc AS $i=>$v) { |
||||
$key = array_search($i, $excl); |
||||
unset($excl[$key]); |
||||
} |
||||
} |
||||
|
||||
set_magic_quotes_runtime(0); |
||||
|
||||
$l = file('mpdf_source.php'); |
||||
if (!count($l)) { die("ERROR - Could not find mpdf_source.php file in current directory"); } |
||||
$exclflags = array(); |
||||
$x = ''; |
||||
foreach($l AS $k=>$ln) { |
||||
$exclude = false; |
||||
// *XXXXX* |
||||
preg_match_all("/\/\/ \*([A-Za-z\-]+)\*/", $ln, $m); |
||||
foreach($m[1] AS $mm) { |
||||
if (in_array($mm, $excl)) { |
||||
$exclude = true; |
||||
} |
||||
} |
||||
/*-- XXXXX --*/ |
||||
preg_match_all("/\/\*-- ([A-Za-z\-]+) --\*\//", $ln, $m); |
||||
foreach($m[1] AS $mm) { |
||||
if (in_array($mm, $excl)) { |
||||
$exclflags[$mm] = true; |
||||
} |
||||
$exclude = true; |
||||
} |
||||
$exclflags = array_unique($exclflags); |
||||
/*-- END XXXX --*/ |
||||
preg_match_all("/\/\*-- END ([A-Za-z\-]+) --\*\//", $ln, $m); |
||||
foreach($m[1] AS $mm) { |
||||
if (in_array($mm, $excl)) { |
||||
unset($exclflags[$mm]); |
||||
} |
||||
$exclude = true; |
||||
} |
||||
if (count($exclflags)==0 && !$exclude) { |
||||
$x .= $ln; |
||||
} |
||||
} |
||||
|
||||
$check = file_put_contents('mpdf.php', $x); |
||||
if (!$check) { die("ERROR - Could not write to mpdf.php file. Are permissions correctly set?"); } |
||||
echo '<p><b>mPDF file generated successfully!</b></p>'; |
||||
echo '<div>mPDF file size '.number_format((strlen($x)/1024)).' kB</div>'; |
||||
|
||||
unset($l); |
||||
unset($x); |
||||
|
||||
include('mpdf.php'); |
||||
$mpdf = new mPDF(); |
||||
|
||||
echo '<div>Memory usage on loading mPDF class '.number_format((memory_get_usage(true)/(1024*1024)),2).' MB</div>'; |
||||
|
||||
exit; |
||||
|
||||
?> |
@ -1,472 +0,0 @@ |
||||
<?php |
||||
|
||||
// PAGING |
||||
$this->mirrorMargins = 0; // alias = $useOddEven |
||||
$this->restoreBlockPagebreaks = false; |
||||
$this->forcePortraitMargins = false; |
||||
$this->displayDefaultOrientation = false; |
||||
|
||||
|
||||
// PAGE NUMBERING |
||||
// Page numbering - Conditional Text |
||||
$this->pagenumPrefix; |
||||
$this->pagenumSuffix; |
||||
$this->nbpgPrefix; |
||||
$this->nbpgSuffix; |
||||
|
||||
|
||||
// FONTS LANGUAGES & CHARACTER SETS |
||||
// Allows automatic character set conversion if "charset=xxx" detected in html header (WriteHTML() ) |
||||
$this->allow_charset_conversion = true; |
||||
$this->biDirectional=false; // automatically determine BIDI text in LTR page |
||||
// If using a CJK codepage with only CJK/ASCII or embedded characters, this will prevent loading of Unicode fonts - makes smaller files |
||||
$this->use_CJK_only = false; |
||||
$this->autoFontGroupSize = 2; // 1: individual words are spanned; 2: words+; 3: as big chunks as possible. |
||||
$this->useLang = true; // Default changed in mPDF 4.0 |
||||
$this->disableMultilingualJustify = true; // Disables If more than one language on a line using different text-justification |
||||
// e.g. Chinese (character) and RTL (word) |
||||
$this->useSubstitutionsMB = false; // mPDF 4.2 Substitute missing characters in UTF-8(multibyte) documents - from core fonts |
||||
$this->falseBoldWeight = 5; // mPDF 4.2 Weight for bold text when using an artificial (outline) bold; value 0 (off) - 10 (rec. max) |
||||
|
||||
|
||||
// CONFIGURATION |
||||
// This will force all fonts to be substituted with Arial(Helvetica) Times or Courier when using codepage win-1252 - makes smaller files |
||||
$this->useOnlyCoreFonts = false; // alias = $use_embeddedfonts_1252 |
||||
$this->allow_output_buffering = false; |
||||
|
||||
$this->enableImports = false; // mPDF 4.2.006 Adding mPDFI |
||||
|
||||
$this->collapseBlockMargins = true; // mPDF 4.2 Allows top and bottom margins to collapse between block elements |
||||
$this->progressBar = 0; // mPDF 4.2 Shows progress-bars whilst generating file 0 off, 1 simple, 2 advanced |
||||
|
||||
$this->dpi = 96; // mPDF 4.4.003 To interpret "px" pixel values in HTML/CSS (see img_dpi below) |
||||
|
||||
// Automatically correct for tags where HTML specifies optional end tags e.g. P,LI,DD,TD |
||||
// If you are confident input html is valid XHTML, turning this off may make it more reliable(?) |
||||
$this->allow_html_optional_endtags = true; |
||||
$this->ignore_invalid_utf8 = false; |
||||
$this->text_input_as_HTML = false; // Converts all entities in Text inputs to UTF-8 before encoding |
||||
$this->useGraphs = false; |
||||
|
||||
// PDFA1-b Compliant files |
||||
$this->PDFA = false; // mPDF 4.2.018 true=Forces compliance with PDFA-1b spec |
||||
$this->PDFAauto = false; // mPDF 4.2.018 Overrides warnings making changes when possible to force PDFA1-b compliance |
||||
|
||||
$this->ICCProfile = ''; // mPDF 4.2.018 Colour profile OutputIntent for defaultRGB colorSpace |
||||
// sRGB_IEC61966-2-1 (=default if blank and PDFA), or other added .icc profile |
||||
|
||||
|
||||
// mPDF 4.2 - When writing a block element with position:fixed and overflow:auto, mPDF scales it down to fit in the space |
||||
// by repeatedly rewriting it and making adjustments. These values give the adjustments used, depending how far out |
||||
// the previous guess was. The lower the number, the quicker it will finish, but the less accurate the fit may be. |
||||
// FPR1 is for coarse adjustments, and FPR4 for fine adjustments when it is getting closer. |
||||
$this->incrementFPR1 = 10; // i.e. will alter by 1/[10]th of width and try again until within closer limits |
||||
$this->incrementFPR2 = 20; |
||||
$this->incrementFPR3 = 30; |
||||
$this->incrementFPR4 = 50; // i.e. will alter by 1/[50]th of width and try again when it nearly fits |
||||
|
||||
|
||||
// DEBUGGING & DEVELOPERS |
||||
$this->showStats = false; |
||||
$this->debug = false; |
||||
$this->showImageErrors = false; // false/true; |
||||
$this->table_error_report = false; // Die and report error if table is too wide to contain whole words |
||||
$this->table_error_report_param = ''; // Parameter which can be passed to show in error report i.e. chapter number being processed// |
||||
|
||||
|
||||
// ANNOTATIONS |
||||
$this->title2annots = false; |
||||
$this->annotSize = 0.5; // default mm for Adobe annotations - nominal |
||||
$this->annotMargin; // default position for Annotations |
||||
$this->annotOpacity = 0.5; // default opacity for Annotations |
||||
|
||||
// BOOKMARKS |
||||
$this->anchor2Bookmark = 0; // makes <a name=""> into a bookmark as well as internal link target; 1 = just name; 2 = name (p.34) |
||||
|
||||
// CSS & STYLES |
||||
$this->CSSselectMedia='print'; // mPDF 4.3.001 screen, print, or any other CSS @media type (not "all") |
||||
// $this->disablePrintCSS depracated // mPDF 4.3.001 |
||||
$this->rtlCSS = 2; // RTL: 0 overrides defaultCSS; 1 overrides stylesheets; 2 overrides inline styles - TEXT-ALIGN left => right etc. |
||||
// when directionality is set to rtl |
||||
|
||||
|
||||
// PAGE HEADERS & FOOTERS |
||||
$this->forcePortraitHeaders = false; |
||||
// Values used if simple FOOTER/HEADER given i.e. not array |
||||
$this->defaultheaderfontsize = 8; // pt |
||||
$this->defaultheaderfontstyle = 'BI'; // '', or 'B' or 'I' or 'BI' |
||||
$this->defaultheaderline = 1; // 1 or 0 - line under the header |
||||
$this->defaultfooterfontsize = 8; // pt |
||||
$this->defaultfooterfontstyle = 'BI'; // '', or 'B' or 'I' or 'BI' |
||||
$this->defaultfooterline = 1; // 1 or 0 - line over the footer |
||||
$this->header_line_spacing = 0.25; // spacing between bottom of header and line (if present) - function of fontsize |
||||
$this->footer_line_spacing = 0.25; // spacing between bottom of header and line (if present) - function of fontsize |
||||
// If 'pad' margin-top sets fixed distance in mm (padding) between bottom of header and top of text. |
||||
// If 'stretch' margin-top sets a minimum distance in mm between top of page and top of text, which expands if header is too large to fit. |
||||
$this->setAutoTopMargin = false; |
||||
$this->setAutoBottomMargin = false; |
||||
$this->autoMarginPadding = 2; // distance in mm used as padding if 'stretch' mode is used |
||||
|
||||
|
||||
|
||||
// TABLES |
||||
$this->simpleTables = false; // mPDF 4.2.017 Forces all cells to have same border, background etc. Improves performance |
||||
$this->packTableData = false; // mPDF 4.3.009 Reduce memory usage processing tables (but with increased processing time) |
||||
$this->ignore_table_percents = false; |
||||
$this->ignore_table_widths = false; |
||||
$this->keep_table_proportions = false; // If table width set > page width, force resizing but keep relative sizes |
||||
// Also forces respect of cell widths set by % |
||||
$this->shrink_tables_to_fit = 1.4; // automatically reduce fontsize in table if words would have to split ( not in CJK) |
||||
// 0 or false to disable; value (if set) gives maximum factor to reduce fontsize |
||||
|
||||
$this->tableMinSizePriority = false; // mPDF 4.5.006 If page-break-inside:avoid but cannot fit on full page without |
||||
// exceeding autosize; setting this value to true will force respsect for |
||||
// autosize, and disable the page-break-inside:avoid |
||||
|
||||
$this->use_kwt = false; |
||||
|
||||
// IMAGES |
||||
$this->img_dpi = 96; // Default dpi to output images if size not defined |
||||
// See also above "dpi" |
||||
|
||||
|
||||
// TEXT SPACING & JUSTIFICATION |
||||
$this->justifyB4br = false; // mPDF 4.3.003 In justified text, <BR> does not cause the preceding text to be justified in browsers |
||||
// Change to true to force justification (as in MS Word) |
||||
|
||||
$this->tabSpaces = 8; // Number of spaces to replace for a TAB in <pre> sections |
||||
// Notepad uses 6, HTML specification recommends 8 |
||||
$this->jSWord = 0.4; // Proportion (/1) of space (when justifying margins) to allocate to Word vs. Character |
||||
$this->jSmaxChar = 2; // Maximum spacing to allocate to character spacing. (0 = no maximum) |
||||
|
||||
$this->jSmaxCharLast = 1; // Maximum character spacing allowed (carried over) when finishing a last line |
||||
$this->jSmaxWordLast = 2; // Maximum word spacing allowed (carried over) when finishing a last line |
||||
$this->orphansAllowed = 5; // No of SUP or SUB characters to include on line to avoid leaving e.g. end of line//<sup>32</sup> |
||||
$this->normalLineheight = 1.33; // mPDF 4.2 - Value used for line-height when CSS specified as 'normal' (default) |
||||
|
||||
|
||||
// HYPHENATION |
||||
$this->hyphenate = false; |
||||
$this->hyphenateTables = false; |
||||
$this->SHYlang = "en"; // Should be one of: 'en','de','es','fi','fr','it','nl','pl','ru','sv' |
||||
$this->SHYleftmin = 2; |
||||
$this->SHYrightmin = 2; |
||||
$this->SHYcharmin = 2; |
||||
$this->SHYcharmax = 10; |
||||
|
||||
// COLUMNS |
||||
$this->keepColumns = false; // Set to go to the second column only when the first is full of text etc. |
||||
$this->max_colH_correction = 1.15; // Maximum ratio to adjust column height when justifying - too large a value can give ugly results |
||||
$this->ColGap=5; |
||||
|
||||
|
||||
// LISTS |
||||
$this->list_align_style = 'R'; // Determines alignment of numbers in numbered lists |
||||
$this->list_indent_first_level = 0; // 1/0 yex/no to indent first level of list |
||||
$this->list_number_suffix = '.'; // Content to follow a numbered list marker e.g. '.' gives 1. or IV.; ')' gives 1) or a) |
||||
|
||||
|
||||
// WATERMARKS |
||||
$this->watermarkImgBehind = false; // mPDF 4.3.018 |
||||
$this->showWatermarkText = 0; // alias = $TopicIsUnvalidated |
||||
$this->showWatermarkImage = 0; |
||||
$this->watermarkText = ''; // alias = $UnvalidatedText |
||||
$this->watermarkImage = ''; |
||||
$this->watermark_font = ''; |
||||
$this->watermarkTextAlpha = 0.2; |
||||
$this->watermarkImageAlpha = 0.2; |
||||
$this->watermarkImgAlphaBlend = 'Normal'; // mPDF 4.4.002 |
||||
// Accepts any PDF spec. value: Normal, Multiply, Screen, Overlay, Darken, Lighten, ColorDodge, ColorBurn, |
||||
// HardLight, SoftLight, Difference, Exclusion |
||||
// "Multiply" works well for watermark image on top |
||||
|
||||
// BORDERS |
||||
$this->autoPadding = false; // Automatically increases padding in block elements with border-radius set - if required |
||||
|
||||
// FORMS |
||||
$this->textarea_lineheight = 1.25; |
||||
|
||||
// NOT USED??? |
||||
$this->formBgColor = 'white'; |
||||
$this->formBgColorSmall = '#DDDDFF'; // Color used for background of form fields if reduced in size (so border disappears) |
||||
|
||||
|
||||
////////////////////////////////////////////// |
||||
|
||||
// Default values if no style sheet offered (cf. http://www.w3.org/TR/CSS21/sample.html) |
||||
$this->defaultCSS = array( |
||||
'BODY' => array( |
||||
'FONT-FAMILY' => 'serif', |
||||
'FONT-SIZE' => '11pt', |
||||
'TEXT-ALIGN' => 'left', |
||||
'TEXT-INDENT' => '0pt', /* Moved from mPDF 4.0 */ |
||||
'LINE-HEIGHT' => 'normal', /* mPDF 4.2 changed from 1.33 */ |
||||
'MARGIN-COLLAPSE' => 'collapse', /* Custom property to collapse top/bottom margins at top/bottom of page - ignored in tables/lists */ |
||||
), |
||||
'P' => array( |
||||
/* 'TEXT-ALIGN' => 'left', Removed mPDF 4.0 */ |
||||
'MARGIN' => '1.12em 0', |
||||
), |
||||
'H1' => array( |
||||
'FONT-SIZE' => '2em', |
||||
'FONT-WEIGHT' => 'bold', |
||||
'MARGIN' => '0.67em 0', |
||||
'PAGE-BREAK-AFTER' => 'avoid', |
||||
), |
||||
'H2' => array( |
||||
'FONT-SIZE' => '1.5em', |
||||
'FONT-WEIGHT' => 'bold', |
||||
'MARGIN' => '0.75em 0', |
||||
'PAGE-BREAK-AFTER' => 'avoid', |
||||
), |
||||
'H3' => array( |
||||
'FONT-SIZE' => '1.17em', |
||||
'FONT-WEIGHT' => 'bold', |
||||
'MARGIN' => '0.83em 0', |
||||
'PAGE-BREAK-AFTER' => 'avoid', |
||||
), |
||||
'H4' => array( |
||||
'FONT-WEIGHT' => 'bold', |
||||
'MARGIN' => '1.12em 0', |
||||
'PAGE-BREAK-AFTER' => 'avoid', |
||||
), |
||||
'H5' => array( |
||||
'FONT-SIZE' => '0.83em', |
||||
'FONT-WEIGHT' => 'bold', |
||||
'MARGIN' => '1.5em 0', |
||||
'PAGE-BREAK-AFTER' => 'avoid', |
||||
), |
||||
'H6' => array( |
||||
'FONT-SIZE' => '0.75em', |
||||
'FONT-WEIGHT' => 'bold', |
||||
'MARGIN' => '1.67em 0', |
||||
'PAGE-BREAK-AFTER' => 'avoid', |
||||
), |
||||
'HR' => array( |
||||
'COLOR' => '#888888', |
||||
'TEXT-ALIGN' => 'center', |
||||
'WIDTH' => '100%', |
||||
'HEIGHT' => '0.2mm', |
||||
'MARGIN-TOP' => '0.83em', |
||||
'MARGIN-BOTTOM' => '0.83em', |
||||
), |
||||
'PRE' => array( |
||||
'MARGIN' => '0.83em 0', |
||||
'FONT-FAMILY' => 'monospace', |
||||
), |
||||
'S' => array( |
||||
'TEXT-DECORATION' => 'line-through', |
||||
), |
||||
'STRIKE' => array( |
||||
'TEXT-DECORATION' => 'line-through', |
||||
), |
||||
'DEL' => array( |
||||
'TEXT-DECORATION' => 'line-through', |
||||
), |
||||
'SUB' => array( |
||||
'VERTICAL-ALIGN' => 'sub', |
||||
'FONT-SIZE' => '55%', /* Recommended 0.83em */ |
||||
), |
||||
'SUP' => array( |
||||
'VERTICAL-ALIGN' => 'super', |
||||
'FONT-SIZE' => '55%', /* Recommended 0.83em */ |
||||
), |
||||
'U' => array( |
||||
'TEXT-DECORATION' => 'underline', |
||||
), |
||||
'INS' => array( |
||||
'TEXT-DECORATION' => 'underline', |
||||
), |
||||
'B' => array( |
||||
'FONT-WEIGHT' => 'bold', |
||||
), |
||||
'STRONG' => array( |
||||
'FONT-WEIGHT' => 'bold', |
||||
), |
||||
'I' => array( |
||||
'FONT-STYLE' => 'italic', |
||||
), |
||||
'CITE' => array( |
||||
'FONT-STYLE' => 'italic', |
||||
), |
||||
'Q' => array( |
||||
'FONT-STYLE' => 'italic', |
||||
), |
||||
'EM' => array( |
||||
'FONT-STYLE' => 'italic', |
||||
), |
||||
'VAR' => array( |
||||
'FONT-STYLE' => 'italic', |
||||
), |
||||
'SAMP' => array( |
||||
'FONT-FAMILY' => 'monospace', |
||||
), |
||||
'CODE' => array( |
||||
'FONT-FAMILY' => 'monospace', |
||||
), |
||||
'KBD' => array( |
||||
'FONT-FAMILY' => 'monospace', |
||||
), |
||||
'TT' => array( |
||||
'FONT-FAMILY' => 'monospace', |
||||
), |
||||
'SMALL' => array( |
||||
'FONT-SIZE' => '83%', |
||||
), |
||||
'BIG' => array( |
||||
'FONT-SIZE' => '117%', |
||||
), |
||||
'ACRONYM' => array( |
||||
'FONT-SIZE' => '77%', |
||||
'FONT-WEIGHT' => 'bold', |
||||
), |
||||
'ADDRESS' => array( |
||||
'FONT-STYLE' => 'italic', |
||||
), |
||||
'BLOCKQUOTE' => array( |
||||
'MARGIN-LEFT' => '40px', |
||||
'MARGIN-RIGHT' => '40px', |
||||
'MARGIN-TOP' => '1.12em', |
||||
'MARGIN-BOTTOM' => '1.12em', |
||||
), |
||||
'A' => array( |
||||
'COLOR' => '#0000FF', |
||||
'TEXT-DECORATION' => 'underline', |
||||
), |
||||
'UL' => array( |
||||
'MARGIN' => '0.83em 0', /* only applied to top-level of nested lists */ |
||||
'TEXT-INDENT' => '1.3em', /* Custom effect - list indent */ |
||||
), |
||||
'OL' => array( |
||||
'MARGIN' => '0.83em 0', /* only applied to top-level of nested lists */ |
||||
'TEXT-INDENT' => '1.3em', /* Custom effect - list indent */ |
||||
), |
||||
'DL' => array( |
||||
'MARGIN' => '1.67em 0', |
||||
), |
||||
'DT' => array( |
||||
), |
||||
'DD' => array( |
||||
'PADDING-LEFT' => '40px', |
||||
), |
||||
'TABLE' => array( |
||||
'MARGIN' => '0', /* mPDF 4.2 changed */ |
||||
'BORDER-COLLAPSE' => 'separate', |
||||
'BORDER-SPACING' => '2px', |
||||
'EMPTY-CELLS' => 'show', |
||||
'TEXT-ALIGN' => 'left', |
||||
'LINE-HEIGHT' => '1.2', |
||||
'VERTICAL-ALIGN' => 'middle', |
||||
), |
||||
'THEAD' => array( |
||||
), |
||||
'TFOOT' => array( |
||||
), |
||||
'TH' => array( |
||||
'FONT-WEIGHT' => 'bold', |
||||
'TEXT-ALIGN' => 'center', |
||||
'PADDING-LEFT' => '0.1em', |
||||
'PADDING-RIGHT' => '0.1em', |
||||
'PADDING-TOP' => '0.1em', |
||||
'PADDING-BOTTOM' => '0.1em', |
||||
), |
||||
'TD' => array( |
||||
'PADDING-LEFT' => '0.1em', |
||||
'PADDING-RIGHT' => '0.1em', |
||||
'PADDING-TOP' => '0.1em', |
||||
'PADDING-BOTTOM' => '0.1em', |
||||
), |
||||
'IMG' => array( |
||||
'MARGIN' => '0', /* mPDF 4.2 changed */ |
||||
'VERTICAL-ALIGN' => 'baseline', /* mPDF 4.2 changed */ |
||||
), |
||||
'INPUT' => array( |
||||
'FONT-FAMILY' => 'sans-serif', |
||||
'VERTICAL-ALIGN' => 'middle', |
||||
'FONT-SIZE' => '0.9em', |
||||
), |
||||
'SELECT' => array( |
||||
'FONT-FAMILY' => 'sans-serif', |
||||
'FONT-SIZE' => '0.9em', |
||||
'VERTICAL-ALIGN' => 'middle', |
||||
), |
||||
'TEXTAREA' => array( |
||||
'FONT-FAMILY' => 'monospace', |
||||
'FONT-SIZE' => '0.9em', |
||||
'VERTICAL-ALIGN' => 'text-bottom', /* mPDF 4.2 changed */ |
||||
), |
||||
); |
||||
|
||||
|
||||
////////////////////////////////////////////////// |
||||
// VALUES ONLY LIKELY TO BE CHANGED BY DEVELOPERS |
||||
////////////////////////////////////////////////// |
||||
$this->pdf_version = '1.4'; // mPDF 4.2.018 Previously set as 1.5 |
||||
|
||||
// Hyphenation |
||||
$this->SHYlanguages = array('en','de','es','fi','fr','it','nl','pl','ru','sv'); // existing defined patterns |
||||
|
||||
$this->default_lineheight_correction=1.2; // Value 1 sets lineheight=fontsize height; |
||||
// Value used if line-height not set by CSS (usuallly is) |
||||
|
||||
$this->fontsizes = array('XX-SMALL'=>0.7, 'X-SMALL'=>0.77, 'SMALL'=>0.86, 'MEDIUM'=>1, 'LARGE'=>1.2, 'X-LARGE'=>1.5, 'XX-LARGE'=>2); |
||||
|
||||
// CHARACTER PATTERN MATCHES TO DETECT LANGUAGES |
||||
// pattern used to detect RTL characters -> force RTL |
||||
$this->pregRTLchars = "\x{0590}-\x{06FF}\x{0750}-\x{077F}\x{FB00}-\x{FDFD}\x{FE70}-\x{FEFF}"; |
||||
|
||||
// CJK Chars which require changing and are distinctive of specific charset |
||||
$this->pregUHCchars = "\x{3130}-\x{318F}\x{AC00}-\x{D7AF}"; |
||||
$this->pregSJISchars = "\x{3040}-\x{309F}\x{30A0}-\x{30FF}\x{3190}-\x{319F}\x{31F0}-\x{31FF}"; |
||||
// Chars which distinguish CJK but not between different // mPDF 3.0 widen Plane 3 |
||||
$this->pregCJKchars = "\x{2E80}-\x{A4CF}\x{A800}-\x{D7AF}\x{F900}-\x{FAFF}\x{FF00}-\x{FFEF}\x{20000}-\x{2FA1F}"; |
||||
// ASCII Chars which shouldn't break string |
||||
// Use for very specific words |
||||
$this->pregASCIIchars1 = "\x{0021}-\x{002E}\x{0030}-\x{003B}?"; // no [SPACE] |
||||
// Use for words+ |
||||
$this->pregASCIIchars2 = "\x{0020}-\x{002E}\x{0030}-\x{003B}?"; // [SPACE] punctuation and 0-9 |
||||
// Use for chunks > words |
||||
$this->pregASCIIchars3 = "\x{0000}-\x{002E}\x{0030}-\x{003B}\x{003F}-\x{007E}"; // all except <> |
||||
// Vietnamese - specific |
||||
$this->pregVIETchars = "\x{01A0}\x{01A1}\x{01AF}\x{01B0}\x{1EA0}-\x{1EF1}"; |
||||
// Vietnamese - Chars which shouldn't break string |
||||
$this->pregVIETPluschars = "\x{0000}-\x{003B}\x{003F}-\x{00FF}\x{0300}-\x{036F}\x{0102}\x{0103}\x{0110}\x{0111}\x{0128}\x{0129}\x{0168}\x{0169}\x{1EF1}-\x{1EF9}"; // omits < > |
||||
|
||||
// Arabic |
||||
$this->pregARABICchars = "\x{0600}-\x{06FF}\x{0750}-\x{077F}\x{FB50}-\x{FDFD}\x{FE70}-\x{FEFF}"; |
||||
// Characters of Urdu, Pashto, Sindhi (but NOT arabic or persian/farsi) [not covered by DejavuSans font] |
||||
$this->pregNonARABICchars = "\x{0671}-\x{067D}\x{067F}-\x{0685}\x{0687}-\x{0697}\x{0699}-\x{06A8}\x{06AA}-\x{06AE}\x{06B0}-\x{06CB}\x{06CD}-\x{06D3}"; |
||||
|
||||
$this->pregHEBchars = "\x{0590}-\x{05FF}\x{FB00}-\x{FB49}"; // Hebrew |
||||
|
||||
// INDIC |
||||
$this->pregHIchars = "\x{0900}-\x{0963}\x{0966}-\x{097F}"; // Devanagari (Hindi) minus the common indic punctuation 0964,0965 |
||||
$this->pregBNchars = "\x{0980}-\x{09FF}"; // Bengali |
||||
$this->pregPAchars = "\x{0A00}-\x{0A7F}"; // Gurmukhi (Punjabi) |
||||
$this->pregGUchars = "\x{0A80}-\x{0AFF}"; // Gujarati |
||||
$this->pregORchars = "\x{0B00}-\x{0B7F}"; // Oriya |
||||
$this->pregTAchars = "\x{0B80}-\x{0BFF}"; // Tamil |
||||
$this->pregTEchars = "\x{0C00}-\x{0C7F}"; // Telugu |
||||
$this->pregKNchars = "\x{0C80}-\x{0CFF}"; // Kannada |
||||
$this->pregMLchars = "\x{0D00}-\x{0D7F}"; // Malayalam |
||||
$this->pregSHchars = "\x{0D80}-\x{0DFF}"; // Sinhala |
||||
|
||||
$this->pregINDextra = "\x{200B}-\x{200D}\x{0964}\x{0965}\x{0020}-\x{0022}\x{0024}-\x{002E}\x{003A}-\x{003F}\x{005B}-\x{0060}\x{007B}-\x{007E}-\x{00A0}"; |
||||
// 200B-D=Zero-width joiners; 0964,0965=Generic Indic punctuation; NBSP & general punctuation (excludes # and / so can use in autoFont() ) |
||||
|
||||
$this->allowedCSStags = 'DIV|P|H1|H2|H3|H4|H5|H6|FORM|IMG|A|BODY|TABLE|HR|THEAD|TFOOT|TBODY|TH|TR|TD|UL|OL|LI|PRE|BLOCKQUOTE|ADDRESS|DL|DT|DD'; |
||||
|
||||
// mPDF 4.0 |
||||
$this->allowedCSStags .= '|SPAN|TT|I|B|BIG|SMALL|EM|STRONG|DFN|CODE|SAMP|KBD|VAR|CITE|ABBR|ACRONYM|STRIKE|S|U|DEL|INS|Q|FONT'; |
||||
|
||||
$this->outerblocktags = array('DIV','FORM','CENTER','DL'); |
||||
$this->innerblocktags = array('P','BLOCKQUOTE','ADDRESS','PRE','H1','H2','H3','H4','H5','H6','DT','DD'); |
||||
// NOT Currently used |
||||
$this->inlinetags = array('SPAN','TT','I','B','BIG','SMALL','EM','STRONG','DFN','CODE','SAMP','KBD','VAR','CITE','ABBR','ACRONYM','STRIKE','S','U','DEL','INS','Q','FONT','TTS','TTZ','TTA'); |
||||
$this->listtags = array('UL','OL','LI'); |
||||
$this->tabletags = array('TABLE','THEAD','TFOOT','TBODY','TFOOT','TR','TH','TD'); |
||||
$this->formtags = array('TEXTAREA','INPUT','SELECT'); |
||||
|
||||
|
||||
|
||||
?> |
@ -1,163 +0,0 @@ |
||||
<?php |
||||
|
||||
|
||||
function GetCodepage($llcc) { |
||||
if (strlen($llcc) == 5) { |
||||
$lang = substr(strtolower($llcc),0,2); |
||||
$country = substr(strtoupper($llcc),3,2); |
||||
} |
||||
else { $lang = strtolower($llcc); $country = ''; } |
||||
$unifonts = ""; |
||||
$dir = "ltr"; |
||||
$spacing = ""; |
||||
|
||||
switch($lang){ |
||||
CASE "en": |
||||
CASE "ca": |
||||
CASE "cy": |
||||
CASE "da": |
||||
CASE "de": |
||||
CASE "es": |
||||
CASE "eu": |
||||
CASE "fr": |
||||
CASE "ga": |
||||
CASE "fi": |
||||
CASE "is": |
||||
CASE "it": |
||||
CASE "nl": |
||||
CASE "no": |
||||
CASE "pt": |
||||
CASE "sv": |
||||
$cp = "win-1252"; break; |
||||
|
||||
// ISO-8859-2 |
||||
CASE "cs": |
||||
CASE "hr": |
||||
CASE "hu": |
||||
CASE "pl": |
||||
CASE "ro": |
||||
CASE "sk": |
||||
CASE "sl": |
||||
$cp = "iso-8859-2"; break; |
||||
|
||||
// ISO-8859-4 |
||||
CASE "et": |
||||
CASE "kl": |
||||
CASE "lt": |
||||
CASE "lv": |
||||
$cp = "iso-8859-4"; break; |
||||
|
||||
// WIN-1251 |
||||
CASE "bg": |
||||
CASE "mk": |
||||
CASE "ru": |
||||
CASE "sr": |
||||
CASE "uk": |
||||
$cp = "win-1251"; break; |
||||
|
||||
// ISO-8859-9 (Turkish) |
||||
CASE "tr": |
||||
$cp = "iso-8859-9"; break; |
||||
|
||||
// ISO-8859-7 (Greek) |
||||
CASE "el": |
||||
$cp = "iso-8859-7"; break; |
||||
|
||||
// UTF-8 |
||||
CASE "id": |
||||
CASE "ms": |
||||
CASE "sh": |
||||
CASE "sq": |
||||
CASE "af": |
||||
CASE "be": |
||||
CASE "fo": |
||||
CASE "gl": |
||||
CASE "gv": |
||||
$cp = "UTF-8"; break; |
||||
|
||||
// RTL Languages |
||||
CASE "he": $cp = "UTF-8"; $dir = "rtl"; $spacing = "W"; $unifonts = "dejavusans,dejavusansB,dejavusansI,dejavusansBI,dejavusanscondensed,dejavusanscondensedB,dejavusanscondensedI,dejavusanscondensedBI,freesans,freesansB,freesansI,freesansBI,freeserif,freeserifB,freeserifI,freeserifBI,freemono,freemonoB,freemonoI,freemonoBI"; break; |
||||
|
||||
// Arabic |
||||
CASE "ar": $cp = "UTF-8"; $dir = "rtl"; $spacing = "W"; $unifonts = "dejavusans,dejavusansB,dejavusansI,dejavusansBI,dejavusanscondensed,dejavusanscondensedB,dejavusanscondensedI,dejavusanscondensedBI,ar_1_001,ar_1_002,ar_1_003,ar_1_004,ar_1_005,ar_1_006,ar_1_007,ar_2_001,ar_2_002,ar_2_003,ar_2_004,ar_k_001,ar_k_002"; break; |
||||
CASE "fa": $cp = "UTF-8"; $unifonts = "dejavusans,dejavusansB,dejavusansI,dejavusansBI,dejavusanscondensed,dejavusanscondensedB,dejavusanscondensedI,dejavusanscondensedBI,fa_1_001,fa_1_002"; $dir = "rtl"; $spacing = "W"; break; |
||||
|
||||
CASE "ps": $cp = "UTF-8"; $dir = "rtl"; $spacing = "W"; $unifonts = "ps_1_001"; break; |
||||
CASE "ur": $cp = "UTF-8"; $dir = "rtl"; $spacing = "W"; $unifonts = "ur_1_001"; break; |
||||
|
||||
// Sindhi (Arabic or Devanagari) |
||||
CASE "sd": |
||||
if ($country == "IN") { $cp = "UTF-8"; $spacing = "W"; $unifonts = "ind_hi_1_001"; } |
||||
else if ($country == "PK") { $cp = "UTF-8"; $dir = "rtl"; $spacing = "W"; $unifonts = "sd_1_001,sd_1_002"; } |
||||
else { $cp = "UTF-8"; $dir = "rtl"; $spacing = "W"; $unifonts = "sd_1_001,sd_1_002"; } |
||||
break; |
||||
|
||||
|
||||
// INDIC |
||||
// Assamese |
||||
CASE "as": $cp = "UTF-8"; $spacing = "W"; $unifonts = "ind_bn_1_001"; break; |
||||
// Bengali |
||||
CASE "bn": $cp = "UTF-8"; $spacing = "W"; $unifonts = "ind_bn_1_001"; break; |
||||
// Gujarati |
||||
CASE "gu": $cp = "UTF-8"; $spacing = "W"; $unifonts = "ind_gu_1_001"; break; |
||||
// Hindi (Devanagari) |
||||
CASE "hi": $cp = "UTF-8"; $spacing = "W"; $unifonts = "ind_hi_1_001"; break; |
||||
// Kannada |
||||
CASE "kn": $cp = "UTF-8"; $spacing = "W"; $unifonts = "ind_kn_1_001"; break; |
||||
// Kashmiri |
||||
CASE "ks": $cp = "UTF-8"; $spacing = "W"; $unifonts = "ind_hi_1_001"; break; |
||||
// Malayalam |
||||
CASE "ml": $cp = "UTF-8"; $spacing = "W"; $unifonts = "ind_ml_1_001"; break; |
||||
// Nepali (Devanagari) |
||||
CASE "ne": $cp = "UTF-8"; $spacing = "W"; $unifonts = "ind_hi_1_001"; break; |
||||
// Oriya |
||||
CASE "or": $cp = "UTF-8"; $spacing = "W"; $unifonts = "ind_or_1_001"; break; |
||||
// Punjabi (Gurmukhi) |
||||
CASE "pa": $cp = "UTF-8"; $spacing = "W"; $unifonts = "ind_pa_1_001"; break; |
||||
// Tamil |
||||
CASE "ta": $cp = "UTF-8"; $spacing = "W"; $unifonts = "ind_ta_1_001"; break; |
||||
// Telegu |
||||
CASE "te": $cp = "UTF-8"; $spacing = "W"; $unifonts = "ind_te_1_001"; break; |
||||
|
||||
// Sinhalese |
||||
CASE "si": $cp = "UTF-8"; $spacing = "W"; $unifonts = "freesans"; break; |
||||
|
||||
// THAI |
||||
CASE "th": $cp = "UTF-8"; $spacing = "C"; $unifonts = "garuda,garudaB,garudaI,garudaBI,norasi,norasiB,norasiI,norasiBI,freeserif"; break; |
||||
|
||||
// VIETNAMESE |
||||
CASE "vi": $cp = "UTF-8"; $unifonts = "dejavusans,dejavusansB,dejavusansI,dejavusansBI,dejavusanscondensed,dejavusanscondensedB,dejavusanscondensedI,dejavusanscondensedBI,freeserif"; break; |
||||
|
||||
// CJK Langauges |
||||
CASE "ja": $cp = "SHIFT_JIS"; $spacing = "C"; break; |
||||
CASE "ko": $cp = "UHC"; $spacing = "C"; break; |
||||
CASE "zh": |
||||
if ($country == "HK" || $country == "TW") { $cp = "BIG5"; $spacing = "C"; } |
||||
else if ($country == "CN") { $cp = "GBK"; $spacing = "C"; } |
||||
else { $cp = "GBK"; $spacing = "C"; } |
||||
break; |
||||
|
||||
/* |
||||
// CJK Langauges - ALTERNATIVE |
||||
CASE "ja": |
||||
CASE "zh": |
||||
$cp = "UTF-8"; $spacing = "C"; $unifonts = "zn_hannom_a"; break; |
||||
CASE "ko": $cp = "UTF-8"; $spacing = "C"; $unifonts = "unbatang_0613"; break; |
||||
*/ |
||||
|
||||
|
||||
// Default UTF-8 |
||||
default: $cp = "UTF-8"; break; // mPDF 4.2 Don't need to set unifonts - will make all available if left blank |
||||
// Default spacing set to '' (i.e. mixed character/word) |
||||
|
||||
} |
||||
|
||||
|
||||
$unifonts_arr = array(); |
||||
if ($unifonts) { |
||||
$unifonts_arr = preg_split('/\s*,\s*/',$unifonts); |
||||
} |
||||
return array($cp,$unifonts_arr,$dir,$spacing); |
||||
} |
||||
|
||||
?> |
@ -1,78 +0,0 @@ |
||||
<?php |
||||
|
||||
|
||||
// List of ALL available fonts (incl. styles) in non-Unicode directory |
||||
// Always put main font (without styles) before font+style; put preferred default first in order |
||||
// Do NOT include Arial Helvetica Times Courier Symbol or ZapfDingbats |
||||
$this->available_fonts = array( |
||||
'dejavusanscondensed','dejavusanscondensedB','dejavusanscondensedI','dejavusanscondensedBI', |
||||
'dejavuserifcondensed','dejavuserifcondensedB','dejavuserifcondensedI','dejavuserifcondensedBI', |
||||
'dejavusans','dejavusansB','dejavusansI','dejavusansBI', |
||||
'dejavuserif','dejavuserifB','dejavuserifI','dejavuserifBI', |
||||
'dejavusansmono','dejavusansmonoB','dejavusansmonoI','dejavusansmonoBI', |
||||
|
||||
'freesans','freesansB','freesansI','freesansBI', |
||||
'freeserif','freeserifB','freeserifI','freeserifBI', |
||||
'freemono','freemonoB','freemonoI','freemonoBI', |
||||
'ocrb', |
||||
|
||||
/* Add any extra codepaged fonts here */ |
||||
|
||||
); |
||||
|
||||
// List of ALL available fonts (incl. styles) in Unicode directory |
||||
// Always put main font (without styles) before font+style; put preferred default first in order |
||||
// Do NOT include Arial Helvetica Times Courier Symbol or ZapfDingbats |
||||
$this->available_unifonts = array( |
||||
'dejavusanscondensed','dejavusanscondensedB','dejavusanscondensedI','dejavusanscondensedBI', |
||||
'dejavuserifcondensed','dejavuserifcondensedB','dejavuserifcondensedI','dejavuserifcondensedBI', |
||||
'dejavusans','dejavusansB','dejavusansI','dejavusansBI', |
||||
'dejavuserif','dejavuserifB','dejavuserifI','dejavuserifBI', |
||||
'dejavusansmono','dejavusansmonoB','dejavusansmonoI','dejavusansmonoBI', |
||||
|
||||
'freesans','freesansB','freesansI','freesansBI', |
||||
'freeserif','freeserifB','freeserifI','freeserifBI', |
||||
'freemono','freemonoB','freemonoI','freemonoBI', |
||||
'garuda','garudaB','garudaI','garudaBI', |
||||
'norasi','norasiB','norasiI','norasiBI', |
||||
'ocrb', |
||||
|
||||
/* Indic scripts - Uncomment the lines below if you install the Indic font pack */ |
||||
/* |
||||
'ind_hi_1_001', 'ind_bn_1_001', 'ind_ml_1_001', 'ind_kn_1_001', 'ind_gu_1_001', |
||||
'ind_or_1_001', 'ind_ta_1_001', 'ind_te_1_001', 'ind_pa_1_001', |
||||
*/ |
||||
|
||||
/* Arabic scripts - Uncomment the lines below if you install the Arabic/RTL font pack */ |
||||
/* |
||||
'ar_1_001', 'ar_1_002', 'ar_1_003', 'ar_1_004', 'ar_1_005', 'ar_1_006', 'ar_1_007', |
||||
'ar_2_001', 'ar_2_002', 'ar_2_003', 'ar_2_004', |
||||
'ar_k_001', 'ar_k_002', 'fa_1_001', 'fa_1_002', |
||||
'ur_1_001', 'sd_1_001', 'sd_1_002', 'ps_1_001', |
||||
*/ |
||||
|
||||
/* CJK scripts - Uncomment the lines below if you install the CJK ont pack */ |
||||
/* |
||||
'zn_hannom_a', 'unbatang_0613', |
||||
*/ |
||||
|
||||
); |
||||
|
||||
|
||||
|
||||
|
||||
// List of all font families in directories (either) |
||||
// + any others that may be read from a stylesheet - to determine 'type' |
||||
// should include sans-serif, serif and monospace, arial, helvetica, times and courier |
||||
// The order will determine preference when substituting fonts in certain circumstances |
||||
$this->sans_fonts = array('dejavusanscondensed','dejavusans','freesans','franklin','tahoma','garuda','calibri','trebuchet', |
||||
'verdana','geneva','lucida','arial','helvetica','arialnarrow','arialblack','sans','sans-serif','cursive','fantasy', |
||||
); |
||||
|
||||
$this->serif_fonts = array('dejavuserifcondensed','dejavuserif','freeserif','constantia','georgia','albertus','times', |
||||
'norasi','serif','charis','palatino', |
||||
); |
||||
|
||||
$this->mono_fonts = array('dejavusansmono','freemono','courier', 'mono','monospace','ocrb','ocr-b','lucidaconsole'); |
||||
|
||||
?> |
@ -1,9 +0,0 @@ |
||||
<?php |
||||
for($i=0;$i<=255;$i++) |
||||
$cw[chr($i)]=600; |
||||
|
||||
$desc=array('Ascent'=>629,'Descent'=>-157,'CapHeight'=>562,'FontBBox'=>'[-23 -250 715 805]'); |
||||
$up=-100; |
||||
$ut=50; |
||||
|
||||
?> |
@ -1,9 +0,0 @@ |
||||
<?php |
||||
for($i=0;$i<=255;$i++) |
||||
$cw[chr($i)]=600; |
||||
$desc=array('Ascent'=>629,'Descent'=>-157,'CapHeight'=>562,'FontBBox'=>'[-113 -250 749 801]'); |
||||
$up=-100; |
||||
$ut=50; |
||||
|
||||
|
||||
?> |
@ -1,9 +0,0 @@ |
||||
<?php |
||||
for($i=0;$i<=255;$i++) |
||||
$cw[chr($i)]=600; |
||||
$desc=array('Ascent'=>629,'Descent'=>-157,'CapHeight'=>562,'FontBBox'=>'[-57 -250 869 801]'); |
||||
$up=-100; |
||||
$ut=50; |
||||
|
||||
|
||||
?> |
@ -1,9 +0,0 @@ |
||||
<?php |
||||
for($i=0;$i<=255;$i++) |
||||
$cw[chr($i)]=600; |
||||
$desc=array('Ascent'=>629,'Descent'=>-157,'CapHeight'=>562,'FontBBox'=>'[-27 -250 849 805]'); |
||||
$up=-100; |
||||
$ut=50; |
||||
|
||||
|
||||
?> |
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-52 -236 956 946]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>318,'!'=>401,'"'=>460,'#'=>838,'$'=>636,'%'=>950,'&'=>780,'\''=>275,'('=>390,')'=>390,'*'=>500,'+'=>838, |
||||
','=>318,'-'=>361,'.'=>318,'/'=>337,'0'=>636,'1'=>636,'2'=>636,'3'=>636,'4'=>636,'5'=>636,'6'=>636,'7'=>636,'8'=>636,'9'=>636,':'=>337,';'=>337,'<'=>838,'='=>838,'>'=>838,'?'=>531,'@'=>1000,'A'=>684, |
||||
'B'=>686,'C'=>698,'D'=>770,'E'=>632,'F'=>575,'G'=>775,'H'=>752,'I'=>295,'J'=>295,'K'=>656,'L'=>557,'M'=>863,'N'=>748,'O'=>787,'P'=>603,'Q'=>787,'R'=>695,'S'=>635,'T'=>611,'U'=>732,'V'=>684,'W'=>989, |
||||
'X'=>685,'Y'=>611,'Z'=>685,'['=>390,'\\'=>337,']'=>390,'^'=>838,'_'=>500,'`'=>500,'a'=>613,'b'=>635,'c'=>550,'d'=>635,'e'=>615,'f'=>352,'g'=>635,'h'=>634,'i'=>278,'j'=>278,'k'=>579,'l'=>278,'m'=>974, |
||||
'n'=>634,'o'=>612,'p'=>635,'q'=>635,'r'=>411,'s'=>521,'t'=>392,'u'=>634,'v'=>592,'w'=>818,'x'=>592,'y'=>592,'z'=>525,'{'=>636,'|'=>337,'}'=>636,'~'=>838,chr(127)=>600,chr(128)=>600,chr(129)=>600,chr(130)=>600,chr(131)=>600, |
||||
chr(132)=>600,chr(133)=>600,chr(134)=>600,chr(135)=>600,chr(136)=>600,chr(137)=>600,chr(138)=>600,chr(139)=>600,chr(140)=>600,chr(141)=>600,chr(142)=>600,chr(143)=>600,chr(144)=>600,chr(145)=>600,chr(146)=>600,chr(147)=>600,chr(148)=>600,chr(149)=>600,chr(150)=>600,chr(151)=>600,chr(152)=>600,chr(153)=>600, |
||||
chr(154)=>600,chr(155)=>600,chr(156)=>600,chr(157)=>600,chr(158)=>600,chr(159)=>600,chr(160)=>318,chr(161)=>684,chr(162)=>500,chr(163)=>562,chr(164)=>636,chr(165)=>557,chr(166)=>635,chr(167)=>500,chr(168)=>500,chr(169)=>635,chr(170)=>635,chr(171)=>611,chr(172)=>685,chr(173)=>361,chr(174)=>685,chr(175)=>685, |
||||
chr(176)=>500,chr(177)=>613,chr(178)=>500,chr(179)=>284,chr(180)=>500,chr(181)=>375,chr(182)=>521,chr(183)=>500,chr(184)=>500,chr(185)=>521,chr(186)=>521,chr(187)=>392,chr(188)=>525,chr(189)=>500,chr(190)=>525,chr(191)=>525,chr(192)=>695,chr(193)=>684,chr(194)=>684,chr(195)=>684,chr(196)=>684,chr(197)=>557, |
||||
chr(198)=>698,chr(199)=>698,chr(200)=>698,chr(201)=>632,chr(202)=>632,chr(203)=>632,chr(204)=>632,chr(205)=>295,chr(206)=>295,chr(207)=>770,chr(208)=>775,chr(209)=>748,chr(210)=>748,chr(211)=>787,chr(212)=>787,chr(213)=>787,chr(214)=>787,chr(215)=>838,chr(216)=>695,chr(217)=>732,chr(218)=>732,chr(219)=>732, |
||||
chr(220)=>732,chr(221)=>611,chr(222)=>611,chr(223)=>630,chr(224)=>411,chr(225)=>613,chr(226)=>613,chr(227)=>613,chr(228)=>613,chr(229)=>278,chr(230)=>550,chr(231)=>550,chr(232)=>550,chr(233)=>615,chr(234)=>615,chr(235)=>615,chr(236)=>615,chr(237)=>278,chr(238)=>278,chr(239)=>635,chr(240)=>635,chr(241)=>634, |
||||
chr(242)=>634,chr(243)=>612,chr(244)=>612,chr(245)=>612,chr(246)=>612,chr(247)=>838,chr(248)=>411,chr(249)=>634,chr(250)=>634,chr(251)=>634,chr(252)=>634,chr(253)=>592,chr(254)=>392,chr(255)=>500); |
||||
$enc='iso-8859-2'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /Aogonek /breve /Lslash 165 /Lcaron /Sacute 169 /Scaron /Scedilla /Tcaron /Zacute 174 /Zcaron /Zdotaccent 177 /aogonek /ogonek /lslash 181 /lcaron /sacute /caron 185 /scaron /scedilla /tcaron /zacute /hungarumlaut /zcaron /zdotaccent /Racute 195 /Abreve 197 /Lacute /Cacute 200 /Ccaron 202 /Eogonek 204 /Ecaron 207 /Dcaron /Dcroat /Nacute /Ncaron 213 /Ohungarumlaut 216 /Rcaron /Uring 219 /Uhungarumlaut 222 /Tcommaaccent 224 /racute 227 /abreve 229 /lacute /cacute 232 /ccaron 234 /eogonek 236 /ecaron 239 /dcaron /dcroat /nacute /ncaron 245 /ohungarumlaut 248 /rcaron /uring 251 /uhungarumlaut 254 /tcommaaccent /dotaccent'; |
||||
$file='dejavusans-iso-8859-2.z'; |
||||
$size1=6006; |
||||
$size2=24759; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-52 -250 956 928]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>318,'!'=>401,'"'=>460,'#'=>838,'$'=>636,'%'=>950,'&'=>780,'\''=>275,'('=>390,')'=>390,'*'=>500,'+'=>838, |
||||
','=>318,'-'=>361,'.'=>318,'/'=>337,'0'=>636,'1'=>636,'2'=>636,'3'=>636,'4'=>636,'5'=>636,'6'=>636,'7'=>636,'8'=>636,'9'=>636,':'=>337,';'=>337,'<'=>838,'='=>838,'>'=>838,'?'=>531,'@'=>1000,'A'=>684, |
||||
'B'=>686,'C'=>698,'D'=>770,'E'=>632,'F'=>575,'G'=>775,'H'=>752,'I'=>295,'J'=>295,'K'=>656,'L'=>557,'M'=>863,'N'=>748,'O'=>787,'P'=>603,'Q'=>787,'R'=>695,'S'=>635,'T'=>611,'U'=>732,'V'=>684,'W'=>989, |
||||
'X'=>685,'Y'=>611,'Z'=>685,'['=>390,'\\'=>337,']'=>390,'^'=>838,'_'=>500,'`'=>500,'a'=>613,'b'=>635,'c'=>550,'d'=>635,'e'=>615,'f'=>352,'g'=>635,'h'=>634,'i'=>278,'j'=>278,'k'=>579,'l'=>278,'m'=>974, |
||||
'n'=>634,'o'=>612,'p'=>635,'q'=>635,'r'=>411,'s'=>521,'t'=>392,'u'=>634,'v'=>592,'w'=>818,'x'=>592,'y'=>592,'z'=>525,'{'=>636,'|'=>337,'}'=>636,'~'=>838,chr(127)=>600,chr(128)=>600,chr(129)=>600,chr(130)=>600,chr(131)=>600, |
||||
chr(132)=>600,chr(133)=>600,chr(134)=>600,chr(135)=>600,chr(136)=>600,chr(137)=>600,chr(138)=>600,chr(139)=>600,chr(140)=>600,chr(141)=>600,chr(142)=>600,chr(143)=>600,chr(144)=>600,chr(145)=>600,chr(146)=>600,chr(147)=>600,chr(148)=>600,chr(149)=>600,chr(150)=>600,chr(151)=>600,chr(152)=>600,chr(153)=>600, |
||||
chr(154)=>600,chr(155)=>600,chr(156)=>600,chr(157)=>600,chr(158)=>600,chr(159)=>600,chr(160)=>318,chr(161)=>684,chr(162)=>579,chr(163)=>695,chr(164)=>636,chr(165)=>295,chr(166)=>557,chr(167)=>500,chr(168)=>500,chr(169)=>635,chr(170)=>632,chr(171)=>775,chr(172)=>611,chr(173)=>361,chr(174)=>685,chr(175)=>500, |
||||
chr(176)=>500,chr(177)=>613,chr(178)=>500,chr(179)=>411,chr(180)=>500,chr(181)=>278,chr(182)=>278,chr(183)=>500,chr(184)=>500,chr(185)=>521,chr(186)=>615,chr(187)=>635,chr(188)=>392,chr(189)=>748,chr(190)=>525,chr(191)=>634,chr(192)=>684,chr(193)=>684,chr(194)=>684,chr(195)=>684,chr(196)=>684,chr(197)=>684, |
||||
chr(198)=>974,chr(199)=>295,chr(200)=>698,chr(201)=>632,chr(202)=>632,chr(203)=>632,chr(204)=>632,chr(205)=>295,chr(206)=>295,chr(207)=>295,chr(208)=>775,chr(209)=>748,chr(210)=>787,chr(211)=>656,chr(212)=>787,chr(213)=>787,chr(214)=>787,chr(215)=>838,chr(216)=>787,chr(217)=>732,chr(218)=>732,chr(219)=>732, |
||||
chr(220)=>732,chr(221)=>732,chr(222)=>732,chr(223)=>630,chr(224)=>613,chr(225)=>613,chr(226)=>613,chr(227)=>613,chr(228)=>613,chr(229)=>613,chr(230)=>982,chr(231)=>278,chr(232)=>550,chr(233)=>615,chr(234)=>615,chr(235)=>615,chr(236)=>615,chr(237)=>278,chr(238)=>278,chr(239)=>278,chr(240)=>635,chr(241)=>634, |
||||
chr(242)=>612,chr(243)=>579,chr(244)=>612,chr(245)=>612,chr(246)=>612,chr(247)=>838,chr(248)=>612,chr(249)=>634,chr(250)=>634,chr(251)=>634,chr(252)=>634,chr(253)=>634,chr(254)=>634,chr(255)=>500); |
||||
$enc='iso-8859-4'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /Aogonek /kgreenlandic /Rcommaaccent 165 /Itilde /Lcommaaccent 169 /Scaron /Emacron /Gcommaaccent /Tbar 174 /Zcaron 177 /aogonek /ogonek /rcommaaccent 181 /itilde /lcommaaccent /caron 185 /scaron /emacron /gcommaaccent /tbar /Eng /zcaron /eng /Amacron 199 /Iogonek /Ccaron 202 /Eogonek 204 /Edotaccent 207 /Imacron /Dcroat /Ncommaaccent /Omacron /Kcommaaccent 217 /Uogonek 221 /Utilde /Umacron 224 /amacron 231 /iogonek /ccaron 234 /eogonek 236 /edotaccent 239 /imacron /dcroat /ncommaaccent /omacron /kcommaaccent 249 /uogonek 253 /utilde /umacron /dotaccent'; |
||||
$file='dejavusans-iso-8859-4.z'; |
||||
$size1=6025; |
||||
$size2=25007; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-52 -236 1000 978]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>318,'!'=>401,'"'=>460,'#'=>838,'$'=>636,'%'=>950,'&'=>780,'\''=>275,'('=>390,')'=>390,'*'=>500,'+'=>838, |
||||
','=>318,'-'=>361,'.'=>318,'/'=>337,'0'=>636,'1'=>636,'2'=>636,'3'=>636,'4'=>636,'5'=>636,'6'=>636,'7'=>636,'8'=>636,'9'=>636,':'=>337,';'=>337,'<'=>838,'='=>838,'>'=>838,'?'=>531,'@'=>1000,'A'=>684, |
||||
'B'=>686,'C'=>698,'D'=>770,'E'=>632,'F'=>575,'G'=>775,'H'=>752,'I'=>295,'J'=>295,'K'=>656,'L'=>557,'M'=>863,'N'=>748,'O'=>787,'P'=>603,'Q'=>787,'R'=>695,'S'=>635,'T'=>611,'U'=>732,'V'=>684,'W'=>989, |
||||
'X'=>685,'Y'=>611,'Z'=>685,'['=>390,'\\'=>337,']'=>390,'^'=>838,'_'=>500,'`'=>500,'a'=>613,'b'=>635,'c'=>550,'d'=>635,'e'=>615,'f'=>352,'g'=>635,'h'=>634,'i'=>278,'j'=>278,'k'=>579,'l'=>278,'m'=>974, |
||||
'n'=>634,'o'=>612,'p'=>635,'q'=>635,'r'=>411,'s'=>521,'t'=>392,'u'=>634,'v'=>592,'w'=>818,'x'=>592,'y'=>592,'z'=>525,'{'=>636,'|'=>337,'}'=>636,'~'=>838,chr(127)=>600,chr(128)=>600,chr(129)=>600,chr(130)=>600,chr(131)=>600, |
||||
chr(132)=>600,chr(133)=>600,chr(134)=>600,chr(135)=>600,chr(136)=>600,chr(137)=>600,chr(138)=>600,chr(139)=>600,chr(140)=>600,chr(141)=>600,chr(142)=>600,chr(143)=>600,chr(144)=>600,chr(145)=>600,chr(146)=>600,chr(147)=>600,chr(148)=>600,chr(149)=>600,chr(150)=>600,chr(151)=>600,chr(152)=>600,chr(153)=>600, |
||||
chr(154)=>600,chr(155)=>600,chr(156)=>600,chr(157)=>600,chr(158)=>600,chr(159)=>600,chr(160)=>318,chr(161)=>318,chr(162)=>318,chr(163)=>636,chr(164)=>600,chr(165)=>600,chr(166)=>337,chr(167)=>500,chr(168)=>500,chr(169)=>1000,chr(170)=>600,chr(171)=>612,chr(172)=>838,chr(173)=>361,chr(174)=>600,chr(175)=>1000, |
||||
chr(176)=>500,chr(177)=>838,chr(178)=>401,chr(179)=>401,chr(180)=>500,chr(181)=>500,chr(182)=>692,chr(183)=>318,chr(184)=>746,chr(185)=>871,chr(186)=>408,chr(187)=>612,chr(188)=>813,chr(189)=>969,chr(190)=>825,chr(191)=>826,chr(192)=>338,chr(193)=>684,chr(194)=>686,chr(195)=>557,chr(196)=>684,chr(197)=>632, |
||||
chr(198)=>685,chr(199)=>752,chr(200)=>787,chr(201)=>295,chr(202)=>656,chr(203)=>684,chr(204)=>863,chr(205)=>748,chr(206)=>632,chr(207)=>787,chr(208)=>752,chr(209)=>603,chr(210)=>600,chr(211)=>632,chr(212)=>611,chr(213)=>611,chr(214)=>787,chr(215)=>685,chr(216)=>787,chr(217)=>764,chr(218)=>295,chr(219)=>611, |
||||
chr(220)=>659,chr(221)=>541,chr(222)=>634,chr(223)=>338,chr(224)=>579,chr(225)=>659,chr(226)=>638,chr(227)=>592,chr(228)=>612,chr(229)=>541,chr(230)=>544,chr(231)=>634,chr(232)=>612,chr(233)=>338,chr(234)=>589,chr(235)=>592,chr(236)=>636,chr(237)=>559,chr(238)=>558,chr(239)=>612,chr(240)=>602,chr(241)=>635, |
||||
chr(242)=>587,chr(243)=>634,chr(244)=>602,chr(245)=>579,chr(246)=>660,chr(247)=>578,chr(248)=>660,chr(249)=>837,chr(250)=>338,chr(251)=>579,chr(252)=>612,chr(253)=>579,chr(254)=>837,chr(255)=>600); |
||||
$enc='iso-8859-7'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /quoteleft /quoteright 164 /.notdef /.notdef 170 /.notdef 174 /.notdef /afii00208 180 /tonos /dieresistonos /Alphatonos 184 /Epsilontonos /Etatonos /Iotatonos 188 /Omicrontonos 190 /Upsilontonos /Omegatonos /iotadieresistonos /Alpha /Beta /Gamma /Delta /Epsilon /Zeta /Eta /Theta /Iota /Kappa /Lambda /Mu /Nu /Xi /Omicron /Pi /Rho /.notdef /Sigma /Tau /Upsilon /Phi /Chi /Psi /Omega /Iotadieresis /Upsilondieresis /alphatonos /epsilontonos /etatonos /iotatonos /upsilondieresistonos /alpha /beta /gamma /delta /epsilon /zeta /eta /theta /iota /kappa /lambda /mu /nu /xi /omicron /pi /rho /sigma1 /sigma /tau /upsilon /phi /chi /psi /omega /iotadieresis /upsilondieresis /omicrontonos /upsilontonos /omegatonos /.notdef'; |
||||
$file='dejavusans-iso-8859-7.z'; |
||||
$size1=5982; |
||||
$size2=21236; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-52 -236 956 928]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>318,'!'=>401,'"'=>460,'#'=>838,'$'=>636,'%'=>950,'&'=>780,'\''=>275,'('=>390,')'=>390,'*'=>500,'+'=>838, |
||||
','=>318,'-'=>361,'.'=>318,'/'=>337,'0'=>636,'1'=>636,'2'=>636,'3'=>636,'4'=>636,'5'=>636,'6'=>636,'7'=>636,'8'=>636,'9'=>636,':'=>337,';'=>337,'<'=>838,'='=>838,'>'=>838,'?'=>531,'@'=>1000,'A'=>684, |
||||
'B'=>686,'C'=>698,'D'=>770,'E'=>632,'F'=>575,'G'=>775,'H'=>752,'I'=>295,'J'=>295,'K'=>656,'L'=>557,'M'=>863,'N'=>748,'O'=>787,'P'=>603,'Q'=>787,'R'=>695,'S'=>635,'T'=>611,'U'=>732,'V'=>684,'W'=>989, |
||||
'X'=>685,'Y'=>611,'Z'=>685,'['=>390,'\\'=>337,']'=>390,'^'=>838,'_'=>500,'`'=>500,'a'=>613,'b'=>635,'c'=>550,'d'=>635,'e'=>615,'f'=>352,'g'=>635,'h'=>634,'i'=>278,'j'=>278,'k'=>579,'l'=>278,'m'=>974, |
||||
'n'=>634,'o'=>612,'p'=>635,'q'=>635,'r'=>411,'s'=>521,'t'=>392,'u'=>634,'v'=>592,'w'=>818,'x'=>592,'y'=>592,'z'=>525,'{'=>636,'|'=>337,'}'=>636,'~'=>838,chr(127)=>600,chr(128)=>600,chr(129)=>600,chr(130)=>600,chr(131)=>600, |
||||
chr(132)=>600,chr(133)=>600,chr(134)=>600,chr(135)=>600,chr(136)=>600,chr(137)=>600,chr(138)=>600,chr(139)=>600,chr(140)=>600,chr(141)=>600,chr(142)=>600,chr(143)=>600,chr(144)=>600,chr(145)=>600,chr(146)=>600,chr(147)=>600,chr(148)=>600,chr(149)=>600,chr(150)=>600,chr(151)=>600,chr(152)=>600,chr(153)=>600, |
||||
chr(154)=>600,chr(155)=>600,chr(156)=>600,chr(157)=>600,chr(158)=>600,chr(159)=>600,chr(160)=>318,chr(161)=>401,chr(162)=>636,chr(163)=>636,chr(164)=>636,chr(165)=>636,chr(166)=>337,chr(167)=>500,chr(168)=>500,chr(169)=>1000,chr(170)=>471,chr(171)=>612,chr(172)=>838,chr(173)=>361,chr(174)=>1000,chr(175)=>500, |
||||
chr(176)=>500,chr(177)=>838,chr(178)=>401,chr(179)=>401,chr(180)=>500,chr(181)=>636,chr(182)=>636,chr(183)=>318,chr(184)=>500,chr(185)=>401,chr(186)=>471,chr(187)=>612,chr(188)=>969,chr(189)=>969,chr(190)=>969,chr(191)=>531,chr(192)=>684,chr(193)=>684,chr(194)=>684,chr(195)=>684,chr(196)=>684,chr(197)=>684, |
||||
chr(198)=>974,chr(199)=>698,chr(200)=>632,chr(201)=>632,chr(202)=>632,chr(203)=>632,chr(204)=>295,chr(205)=>295,chr(206)=>295,chr(207)=>295,chr(208)=>775,chr(209)=>748,chr(210)=>787,chr(211)=>787,chr(212)=>787,chr(213)=>787,chr(214)=>787,chr(215)=>838,chr(216)=>787,chr(217)=>732,chr(218)=>732,chr(219)=>732, |
||||
chr(220)=>732,chr(221)=>295,chr(222)=>635,chr(223)=>630,chr(224)=>613,chr(225)=>613,chr(226)=>613,chr(227)=>613,chr(228)=>613,chr(229)=>613,chr(230)=>982,chr(231)=>550,chr(232)=>615,chr(233)=>615,chr(234)=>615,chr(235)=>615,chr(236)=>278,chr(237)=>278,chr(238)=>278,chr(239)=>278,chr(240)=>635,chr(241)=>634, |
||||
chr(242)=>612,chr(243)=>612,chr(244)=>612,chr(245)=>612,chr(246)=>612,chr(247)=>838,chr(248)=>612,chr(249)=>634,chr(250)=>634,chr(251)=>634,chr(252)=>634,chr(253)=>278,chr(254)=>521,chr(255)=>592); |
||||
$enc='iso-8859-9'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 208 /Gbreve 221 /Idotaccent /Scedilla 240 /gbreve 253 /dotlessi /scedilla'; |
||||
$file='dejavusans-iso-8859-9.z'; |
||||
$size1=6060; |
||||
$size2=25231; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-52 -236 1287 928]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>318,'!'=>401,'"'=>460,'#'=>838,'$'=>636,'%'=>950,'&'=>780,'\''=>275,'('=>390,')'=>390,'*'=>500,'+'=>838, |
||||
','=>318,'-'=>361,'.'=>318,'/'=>337,'0'=>636,'1'=>636,'2'=>636,'3'=>636,'4'=>636,'5'=>636,'6'=>636,'7'=>636,'8'=>636,'9'=>636,':'=>337,';'=>337,'<'=>838,'='=>838,'>'=>838,'?'=>531,'@'=>1000,'A'=>684, |
||||
'B'=>686,'C'=>698,'D'=>770,'E'=>632,'F'=>575,'G'=>775,'H'=>752,'I'=>295,'J'=>295,'K'=>656,'L'=>557,'M'=>863,'N'=>748,'O'=>787,'P'=>603,'Q'=>787,'R'=>695,'S'=>635,'T'=>611,'U'=>732,'V'=>684,'W'=>989, |
||||
'X'=>685,'Y'=>611,'Z'=>685,'['=>390,'\\'=>337,']'=>390,'^'=>838,'_'=>500,'`'=>500,'a'=>613,'b'=>635,'c'=>550,'d'=>635,'e'=>615,'f'=>352,'g'=>635,'h'=>634,'i'=>278,'j'=>278,'k'=>579,'l'=>278,'m'=>974, |
||||
'n'=>634,'o'=>612,'p'=>635,'q'=>635,'r'=>411,'s'=>521,'t'=>392,'u'=>634,'v'=>592,'w'=>818,'x'=>592,'y'=>592,'z'=>525,'{'=>636,'|'=>337,'}'=>636,'~'=>838,chr(127)=>600,chr(128)=>786,chr(129)=>610,chr(130)=>318,chr(131)=>525, |
||||
chr(132)=>518,chr(133)=>1000,chr(134)=>500,chr(135)=>500,chr(136)=>636,chr(137)=>1342,chr(138)=>1094,chr(139)=>400,chr(140)=>1045,chr(141)=>710,chr(142)=>786,chr(143)=>752,chr(144)=>625,chr(145)=>318,chr(146)=>318,chr(147)=>518,chr(148)=>518,chr(149)=>590,chr(150)=>500,chr(151)=>1000,chr(152)=>600,chr(153)=>1000, |
||||
chr(154)=>902,chr(155)=>400,chr(156)=>898,chr(157)=>604,chr(158)=>652,chr(159)=>654,chr(160)=>318,chr(161)=>609,chr(162)=>592,chr(163)=>295,chr(164)=>636,chr(165)=>610,chr(166)=>337,chr(167)=>500,chr(168)=>632,chr(169)=>1000,chr(170)=>698,chr(171)=>612,chr(172)=>838,chr(173)=>361,chr(174)=>1000,chr(175)=>295, |
||||
chr(176)=>500,chr(177)=>838,chr(178)=>295,chr(179)=>278,chr(180)=>525,chr(181)=>636,chr(182)=>636,chr(183)=>318,chr(184)=>615,chr(185)=>1040,chr(186)=>549,chr(187)=>612,chr(188)=>278,chr(189)=>635,chr(190)=>521,chr(191)=>278,chr(192)=>684,chr(193)=>686,chr(194)=>686,chr(195)=>610,chr(196)=>781,chr(197)=>632, |
||||
chr(198)=>1077,chr(199)=>641,chr(200)=>748,chr(201)=>748,chr(202)=>710,chr(203)=>752,chr(204)=>863,chr(205)=>752,chr(206)=>787,chr(207)=>752,chr(208)=>603,chr(209)=>698,chr(210)=>611,chr(211)=>609,chr(212)=>861,chr(213)=>685,chr(214)=>776,chr(215)=>686,chr(216)=>1069,chr(217)=>1094,chr(218)=>833,chr(219)=>882, |
||||
chr(220)=>686,chr(221)=>698,chr(222)=>1080,chr(223)=>695,chr(224)=>613,chr(225)=>617,chr(226)=>589,chr(227)=>525,chr(228)=>691,chr(229)=>615,chr(230)=>901,chr(231)=>532,chr(232)=>650,chr(233)=>650,chr(234)=>604,chr(235)=>639,chr(236)=>754,chr(237)=>654,chr(238)=>612,chr(239)=>654,chr(240)=>635,chr(241)=>550, |
||||
chr(242)=>583,chr(243)=>592,chr(244)=>855,chr(245)=>592,chr(246)=>681,chr(247)=>591,chr(248)=>915,chr(249)=>942,chr(250)=>707,chr(251)=>790,chr(252)=>589,chr(253)=>549,chr(254)=>842,chr(255)=>602); |
||||
$enc='win-1251'; |
||||
$diff='128 /afii10051 /afii10052 131 /afii10100 136 /Euro 138 /afii10058 140 /afii10059 /afii10061 /afii10060 /afii10145 /afii10099 152 /.notdef 154 /afii10106 156 /afii10107 /afii10109 /afii10108 /afii10193 161 /afii10062 /afii10110 /afii10057 165 /afii10050 168 /afii10023 170 /afii10053 175 /afii10056 178 /afii10055 /afii10103 /afii10098 184 /afii10071 /afii61352 /afii10101 188 /afii10105 /afii10054 /afii10102 /afii10104 /afii10017 /afii10018 /afii10019 /afii10020 /afii10021 /afii10022 /afii10024 /afii10025 /afii10026 /afii10027 /afii10028 /afii10029 /afii10030 /afii10031 /afii10032 /afii10033 /afii10034 /afii10035 /afii10036 /afii10037 /afii10038 /afii10039 /afii10040 /afii10041 /afii10042 /afii10043 /afii10044 /afii10045 /afii10046 /afii10047 /afii10048 /afii10049 /afii10065 /afii10066 /afii10067 /afii10068 /afii10069 /afii10070 /afii10072 /afii10073 /afii10074 /afii10075 /afii10076 /afii10077 /afii10078 /afii10079 /afii10080 /afii10081 /afii10082 /afii10083 /afii10084 /afii10085 /afii10086 /afii10087 /afii10088 /afii10089 /afii10090 /afii10091 /afii10092 /afii10093 /afii10094 /afii10095 /afii10096 /afii10097'; |
||||
$file='dejavusans-win-1251.z'; |
||||
$size1=6216; |
||||
$size2=25960; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-63 -236 1287 928]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>318,'!'=>401,'"'=>460,'#'=>838,'$'=>636,'%'=>950,'&'=>780,'\''=>275,'('=>390,')'=>390,'*'=>500,'+'=>838, |
||||
','=>318,'-'=>361,'.'=>318,'/'=>337,'0'=>636,'1'=>636,'2'=>636,'3'=>636,'4'=>636,'5'=>636,'6'=>636,'7'=>636,'8'=>636,'9'=>636,':'=>337,';'=>337,'<'=>838,'='=>838,'>'=>838,'?'=>531,'@'=>1000,'A'=>684, |
||||
'B'=>686,'C'=>698,'D'=>770,'E'=>632,'F'=>575,'G'=>775,'H'=>752,'I'=>295,'J'=>295,'K'=>656,'L'=>557,'M'=>863,'N'=>748,'O'=>787,'P'=>603,'Q'=>787,'R'=>695,'S'=>635,'T'=>611,'U'=>732,'V'=>684,'W'=>989, |
||||
'X'=>685,'Y'=>611,'Z'=>685,'['=>390,'\\'=>337,']'=>390,'^'=>838,'_'=>500,'`'=>500,'a'=>613,'b'=>635,'c'=>550,'d'=>635,'e'=>615,'f'=>352,'g'=>635,'h'=>634,'i'=>278,'j'=>278,'k'=>579,'l'=>278,'m'=>974, |
||||
'n'=>634,'o'=>612,'p'=>635,'q'=>635,'r'=>411,'s'=>521,'t'=>392,'u'=>634,'v'=>592,'w'=>818,'x'=>592,'y'=>592,'z'=>525,'{'=>636,'|'=>337,'}'=>636,'~'=>838,chr(127)=>600,chr(128)=>636,chr(129)=>600,chr(130)=>318,chr(131)=>352, |
||||
chr(132)=>518,chr(133)=>1000,chr(134)=>500,chr(135)=>500,chr(136)=>500,chr(137)=>1342,chr(138)=>635,chr(139)=>400,chr(140)=>1070,chr(141)=>600,chr(142)=>685,chr(143)=>600,chr(144)=>600,chr(145)=>318,chr(146)=>318,chr(147)=>518,chr(148)=>518,chr(149)=>590,chr(150)=>500,chr(151)=>1000,chr(152)=>500,chr(153)=>1000, |
||||
chr(154)=>521,chr(155)=>400,chr(156)=>1023,chr(157)=>600,chr(158)=>525,chr(159)=>611,chr(160)=>318,chr(161)=>401,chr(162)=>636,chr(163)=>636,chr(164)=>636,chr(165)=>636,chr(166)=>337,chr(167)=>500,chr(168)=>500,chr(169)=>1000,chr(170)=>471,chr(171)=>612,chr(172)=>838,chr(173)=>361,chr(174)=>1000,chr(175)=>500, |
||||
chr(176)=>500,chr(177)=>838,chr(178)=>401,chr(179)=>401,chr(180)=>500,chr(181)=>636,chr(182)=>636,chr(183)=>318,chr(184)=>500,chr(185)=>401,chr(186)=>471,chr(187)=>612,chr(188)=>969,chr(189)=>969,chr(190)=>969,chr(191)=>531,chr(192)=>684,chr(193)=>684,chr(194)=>684,chr(195)=>684,chr(196)=>684,chr(197)=>684, |
||||
chr(198)=>974,chr(199)=>698,chr(200)=>632,chr(201)=>632,chr(202)=>632,chr(203)=>632,chr(204)=>295,chr(205)=>295,chr(206)=>295,chr(207)=>295,chr(208)=>775,chr(209)=>748,chr(210)=>787,chr(211)=>787,chr(212)=>787,chr(213)=>787,chr(214)=>787,chr(215)=>838,chr(216)=>787,chr(217)=>732,chr(218)=>732,chr(219)=>732, |
||||
chr(220)=>732,chr(221)=>611,chr(222)=>605,chr(223)=>630,chr(224)=>613,chr(225)=>613,chr(226)=>613,chr(227)=>613,chr(228)=>613,chr(229)=>613,chr(230)=>982,chr(231)=>550,chr(232)=>615,chr(233)=>615,chr(234)=>615,chr(235)=>615,chr(236)=>278,chr(237)=>278,chr(238)=>278,chr(239)=>278,chr(240)=>612,chr(241)=>634, |
||||
chr(242)=>612,chr(243)=>612,chr(244)=>612,chr(245)=>612,chr(246)=>612,chr(247)=>838,chr(248)=>612,chr(249)=>634,chr(250)=>634,chr(251)=>634,chr(252)=>634,chr(253)=>592,chr(254)=>635,chr(255)=>592); |
||||
$enc='win-1252'; |
||||
$diff=''; |
||||
$file='dejavusans.z'; |
||||
$size1=6074; |
||||
$size2=28274; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans-Bold'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-56 -236 1072 935]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>348,'!'=>456,'"'=>521,'#'=>838,'$'=>696,'%'=>1002,'&'=>872,'\''=>306,'('=>457,')'=>457,'*'=>523,'+'=>838, |
||||
','=>380,'-'=>415,'.'=>380,'/'=>365,'0'=>696,'1'=>696,'2'=>696,'3'=>696,'4'=>696,'5'=>696,'6'=>696,'7'=>696,'8'=>696,'9'=>696,':'=>400,';'=>400,'<'=>838,'='=>838,'>'=>838,'?'=>580,'@'=>1000,'A'=>774, |
||||
'B'=>762,'C'=>734,'D'=>830,'E'=>683,'F'=>683,'G'=>821,'H'=>837,'I'=>372,'J'=>372,'K'=>775,'L'=>637,'M'=>995,'N'=>837,'O'=>850,'P'=>733,'Q'=>850,'R'=>770,'S'=>720,'T'=>682,'U'=>812,'V'=>774,'W'=>1103, |
||||
'X'=>771,'Y'=>724,'Z'=>725,'['=>457,'\\'=>365,']'=>457,'^'=>838,'_'=>500,'`'=>500,'a'=>675,'b'=>716,'c'=>593,'d'=>716,'e'=>678,'f'=>435,'g'=>716,'h'=>712,'i'=>343,'j'=>343,'k'=>665,'l'=>343,'m'=>1042, |
||||
'n'=>712,'o'=>687,'p'=>716,'q'=>716,'r'=>493,'s'=>595,'t'=>478,'u'=>712,'v'=>652,'w'=>924,'x'=>645,'y'=>652,'z'=>582,'{'=>712,'|'=>365,'}'=>712,'~'=>838,chr(127)=>600,chr(128)=>600,chr(129)=>600,chr(130)=>600,chr(131)=>600, |
||||
chr(132)=>600,chr(133)=>600,chr(134)=>600,chr(135)=>600,chr(136)=>600,chr(137)=>600,chr(138)=>600,chr(139)=>600,chr(140)=>600,chr(141)=>600,chr(142)=>600,chr(143)=>600,chr(144)=>600,chr(145)=>600,chr(146)=>600,chr(147)=>600,chr(148)=>600,chr(149)=>600,chr(150)=>600,chr(151)=>600,chr(152)=>600,chr(153)=>600, |
||||
chr(154)=>600,chr(155)=>600,chr(156)=>600,chr(157)=>600,chr(158)=>600,chr(159)=>600,chr(160)=>348,chr(161)=>774,chr(162)=>500,chr(163)=>642,chr(164)=>636,chr(165)=>637,chr(166)=>720,chr(167)=>500,chr(168)=>500,chr(169)=>720,chr(170)=>720,chr(171)=>682,chr(172)=>725,chr(173)=>415,chr(174)=>725,chr(175)=>725, |
||||
chr(176)=>500,chr(177)=>675,chr(178)=>500,chr(179)=>371,chr(180)=>500,chr(181)=>479,chr(182)=>595,chr(183)=>500,chr(184)=>500,chr(185)=>595,chr(186)=>595,chr(187)=>478,chr(188)=>582,chr(189)=>500,chr(190)=>582,chr(191)=>582,chr(192)=>770,chr(193)=>774,chr(194)=>774,chr(195)=>774,chr(196)=>774,chr(197)=>637, |
||||
chr(198)=>734,chr(199)=>734,chr(200)=>734,chr(201)=>683,chr(202)=>683,chr(203)=>683,chr(204)=>683,chr(205)=>372,chr(206)=>372,chr(207)=>830,chr(208)=>838,chr(209)=>837,chr(210)=>837,chr(211)=>850,chr(212)=>850,chr(213)=>850,chr(214)=>850,chr(215)=>838,chr(216)=>770,chr(217)=>812,chr(218)=>812,chr(219)=>812, |
||||
chr(220)=>812,chr(221)=>724,chr(222)=>682,chr(223)=>719,chr(224)=>493,chr(225)=>675,chr(226)=>675,chr(227)=>675,chr(228)=>675,chr(229)=>343,chr(230)=>593,chr(231)=>593,chr(232)=>593,chr(233)=>678,chr(234)=>678,chr(235)=>678,chr(236)=>678,chr(237)=>343,chr(238)=>343,chr(239)=>716,chr(240)=>716,chr(241)=>712, |
||||
chr(242)=>712,chr(243)=>687,chr(244)=>687,chr(245)=>687,chr(246)=>687,chr(247)=>838,chr(248)=>493,chr(249)=>712,chr(250)=>712,chr(251)=>712,chr(252)=>712,chr(253)=>652,chr(254)=>478,chr(255)=>500); |
||||
$enc='iso-8859-2'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /Aogonek /breve /Lslash 165 /Lcaron /Sacute 169 /Scaron /Scedilla /Tcaron /Zacute 174 /Zcaron /Zdotaccent 177 /aogonek /ogonek /lslash 181 /lcaron /sacute /caron 185 /scaron /scedilla /tcaron /zacute /hungarumlaut /zcaron /zdotaccent /Racute 195 /Abreve 197 /Lacute /Cacute 200 /Ccaron 202 /Eogonek 204 /Ecaron 207 /Dcaron /Dcroat /Nacute /Ncaron 213 /Ohungarumlaut 216 /Rcaron /Uring 219 /Uhungarumlaut 222 /Tcommaaccent 224 /racute 227 /abreve 229 /lacute /cacute 232 /ccaron 234 /eogonek 236 /ecaron 239 /dcaron /dcroat /nacute /ncaron 245 /ohungarumlaut 248 /rcaron /uring 251 /uhungarumlaut 254 /tcommaaccent /dotaccent'; |
||||
$file='dejavusansb-iso-8859-2.z'; |
||||
$size1=6027; |
||||
$size2=25555; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans-Bold'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-56 -236 1072 931]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>348,'!'=>456,'"'=>521,'#'=>838,'$'=>696,'%'=>1002,'&'=>872,'\''=>306,'('=>457,')'=>457,'*'=>523,'+'=>838, |
||||
','=>380,'-'=>415,'.'=>380,'/'=>365,'0'=>696,'1'=>696,'2'=>696,'3'=>696,'4'=>696,'5'=>696,'6'=>696,'7'=>696,'8'=>696,'9'=>696,':'=>400,';'=>400,'<'=>838,'='=>838,'>'=>838,'?'=>580,'@'=>1000,'A'=>774, |
||||
'B'=>762,'C'=>734,'D'=>830,'E'=>683,'F'=>683,'G'=>821,'H'=>837,'I'=>372,'J'=>372,'K'=>775,'L'=>637,'M'=>995,'N'=>837,'O'=>850,'P'=>733,'Q'=>850,'R'=>770,'S'=>720,'T'=>682,'U'=>812,'V'=>774,'W'=>1103, |
||||
'X'=>771,'Y'=>724,'Z'=>725,'['=>457,'\\'=>365,']'=>457,'^'=>838,'_'=>500,'`'=>500,'a'=>675,'b'=>716,'c'=>593,'d'=>716,'e'=>678,'f'=>435,'g'=>716,'h'=>712,'i'=>343,'j'=>343,'k'=>665,'l'=>343,'m'=>1042, |
||||
'n'=>712,'o'=>687,'p'=>716,'q'=>716,'r'=>493,'s'=>595,'t'=>478,'u'=>712,'v'=>652,'w'=>924,'x'=>645,'y'=>652,'z'=>582,'{'=>712,'|'=>365,'}'=>712,'~'=>838,chr(127)=>600,chr(128)=>600,chr(129)=>600,chr(130)=>600,chr(131)=>600, |
||||
chr(132)=>600,chr(133)=>600,chr(134)=>600,chr(135)=>600,chr(136)=>600,chr(137)=>600,chr(138)=>600,chr(139)=>600,chr(140)=>600,chr(141)=>600,chr(142)=>600,chr(143)=>600,chr(144)=>600,chr(145)=>600,chr(146)=>600,chr(147)=>600,chr(148)=>600,chr(149)=>600,chr(150)=>600,chr(151)=>600,chr(152)=>600,chr(153)=>600, |
||||
chr(154)=>600,chr(155)=>600,chr(156)=>600,chr(157)=>600,chr(158)=>600,chr(159)=>600,chr(160)=>348,chr(161)=>774,chr(162)=>665,chr(163)=>770,chr(164)=>636,chr(165)=>372,chr(166)=>637,chr(167)=>500,chr(168)=>500,chr(169)=>720,chr(170)=>683,chr(171)=>821,chr(172)=>682,chr(173)=>415,chr(174)=>725,chr(175)=>500, |
||||
chr(176)=>500,chr(177)=>675,chr(178)=>500,chr(179)=>493,chr(180)=>500,chr(181)=>343,chr(182)=>343,chr(183)=>500,chr(184)=>500,chr(185)=>595,chr(186)=>678,chr(187)=>716,chr(188)=>478,chr(189)=>837,chr(190)=>582,chr(191)=>712,chr(192)=>774,chr(193)=>774,chr(194)=>774,chr(195)=>774,chr(196)=>774,chr(197)=>774, |
||||
chr(198)=>1085,chr(199)=>372,chr(200)=>734,chr(201)=>683,chr(202)=>683,chr(203)=>683,chr(204)=>683,chr(205)=>372,chr(206)=>372,chr(207)=>372,chr(208)=>838,chr(209)=>837,chr(210)=>850,chr(211)=>775,chr(212)=>850,chr(213)=>850,chr(214)=>850,chr(215)=>838,chr(216)=>850,chr(217)=>812,chr(218)=>812,chr(219)=>812, |
||||
chr(220)=>812,chr(221)=>812,chr(222)=>812,chr(223)=>719,chr(224)=>675,chr(225)=>675,chr(226)=>675,chr(227)=>675,chr(228)=>675,chr(229)=>675,chr(230)=>1048,chr(231)=>343,chr(232)=>593,chr(233)=>678,chr(234)=>678,chr(235)=>678,chr(236)=>678,chr(237)=>343,chr(238)=>343,chr(239)=>343,chr(240)=>716,chr(241)=>712, |
||||
chr(242)=>687,chr(243)=>665,chr(244)=>687,chr(245)=>687,chr(246)=>687,chr(247)=>838,chr(248)=>687,chr(249)=>712,chr(250)=>712,chr(251)=>712,chr(252)=>712,chr(253)=>712,chr(254)=>712,chr(255)=>500); |
||||
$enc='iso-8859-4'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /Aogonek /kgreenlandic /Rcommaaccent 165 /Itilde /Lcommaaccent 169 /Scaron /Emacron /Gcommaaccent /Tbar 174 /Zcaron 177 /aogonek /ogonek /rcommaaccent 181 /itilde /lcommaaccent /caron 185 /scaron /emacron /gcommaaccent /tbar /Eng /zcaron /eng /Amacron 199 /Iogonek /Ccaron 202 /Eogonek 204 /Edotaccent 207 /Imacron /Dcroat /Ncommaaccent /Omacron /Kcommaaccent 217 /Uogonek 221 /Utilde /Umacron 224 /amacron 231 /iogonek /ccaron 234 /eogonek 236 /edotaccent 239 /imacron /dcroat /ncommaaccent /omacron /kcommaaccent 249 /uogonek 253 /utilde /umacron /dotaccent'; |
||||
$file='dejavusansb-iso-8859-4.z'; |
||||
$size1=6046; |
||||
$size2=25898; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans-Bold'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-56 -236 1072 978]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>348,'!'=>456,'"'=>521,'#'=>838,'$'=>696,'%'=>1002,'&'=>872,'\''=>306,'('=>457,')'=>457,'*'=>523,'+'=>838, |
||||
','=>380,'-'=>415,'.'=>380,'/'=>365,'0'=>696,'1'=>696,'2'=>696,'3'=>696,'4'=>696,'5'=>696,'6'=>696,'7'=>696,'8'=>696,'9'=>696,':'=>400,';'=>400,'<'=>838,'='=>838,'>'=>838,'?'=>580,'@'=>1000,'A'=>774, |
||||
'B'=>762,'C'=>734,'D'=>830,'E'=>683,'F'=>683,'G'=>821,'H'=>837,'I'=>372,'J'=>372,'K'=>775,'L'=>637,'M'=>995,'N'=>837,'O'=>850,'P'=>733,'Q'=>850,'R'=>770,'S'=>720,'T'=>682,'U'=>812,'V'=>774,'W'=>1103, |
||||
'X'=>771,'Y'=>724,'Z'=>725,'['=>457,'\\'=>365,']'=>457,'^'=>838,'_'=>500,'`'=>500,'a'=>675,'b'=>716,'c'=>593,'d'=>716,'e'=>678,'f'=>435,'g'=>716,'h'=>712,'i'=>343,'j'=>343,'k'=>665,'l'=>343,'m'=>1042, |
||||
'n'=>712,'o'=>687,'p'=>716,'q'=>716,'r'=>493,'s'=>595,'t'=>478,'u'=>712,'v'=>652,'w'=>924,'x'=>645,'y'=>652,'z'=>582,'{'=>712,'|'=>365,'}'=>712,'~'=>838,chr(127)=>600,chr(128)=>600,chr(129)=>600,chr(130)=>600,chr(131)=>600, |
||||
chr(132)=>600,chr(133)=>600,chr(134)=>600,chr(135)=>600,chr(136)=>600,chr(137)=>600,chr(138)=>600,chr(139)=>600,chr(140)=>600,chr(141)=>600,chr(142)=>600,chr(143)=>600,chr(144)=>600,chr(145)=>600,chr(146)=>600,chr(147)=>600,chr(148)=>600,chr(149)=>600,chr(150)=>600,chr(151)=>600,chr(152)=>600,chr(153)=>600, |
||||
chr(154)=>600,chr(155)=>600,chr(156)=>600,chr(157)=>600,chr(158)=>600,chr(159)=>600,chr(160)=>348,chr(161)=>380,chr(162)=>380,chr(163)=>696,chr(164)=>600,chr(165)=>600,chr(166)=>365,chr(167)=>500,chr(168)=>500,chr(169)=>1000,chr(170)=>600,chr(171)=>646,chr(172)=>838,chr(173)=>415,chr(174)=>600,chr(175)=>1000, |
||||
chr(176)=>500,chr(177)=>838,chr(178)=>438,chr(179)=>438,chr(180)=>441,chr(181)=>500,chr(182)=>797,chr(183)=>380,chr(184)=>846,chr(185)=>1009,chr(186)=>563,chr(187)=>646,chr(188)=>891,chr(189)=>1035,chr(190)=>980,chr(191)=>894,chr(192)=>390,chr(193)=>774,chr(194)=>762,chr(195)=>637,chr(196)=>774,chr(197)=>683, |
||||
chr(198)=>725,chr(199)=>837,chr(200)=>850,chr(201)=>372,chr(202)=>775,chr(203)=>774,chr(204)=>995,chr(205)=>837,chr(206)=>632,chr(207)=>850,chr(208)=>837,chr(209)=>733,chr(210)=>600,chr(211)=>683,chr(212)=>682,chr(213)=>724,chr(214)=>850,chr(215)=>771,chr(216)=>850,chr(217)=>850,chr(218)=>372,chr(219)=>724, |
||||
chr(220)=>687,chr(221)=>557,chr(222)=>712,chr(223)=>390,chr(224)=>675,chr(225)=>687,chr(226)=>716,chr(227)=>681,chr(228)=>687,chr(229)=>557,chr(230)=>591,chr(231)=>712,chr(232)=>687,chr(233)=>390,chr(234)=>710,chr(235)=>633,chr(236)=>736,chr(237)=>681,chr(238)=>591,chr(239)=>687,chr(240)=>791,chr(241)=>716, |
||||
chr(242)=>593,chr(243)=>779,chr(244)=>638,chr(245)=>675,chr(246)=>782,chr(247)=>645,chr(248)=>794,chr(249)=>869,chr(250)=>390,chr(251)=>675,chr(252)=>687,chr(253)=>675,chr(254)=>869,chr(255)=>600); |
||||
$enc='iso-8859-7'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /quoteleft /quoteright 164 /.notdef /.notdef 170 /.notdef 174 /.notdef /afii00208 180 /tonos /dieresistonos /Alphatonos 184 /Epsilontonos /Etatonos /Iotatonos 188 /Omicrontonos 190 /Upsilontonos /Omegatonos /iotadieresistonos /Alpha /Beta /Gamma /Delta /Epsilon /Zeta /Eta /Theta /Iota /Kappa /Lambda /Mu /Nu /Xi /Omicron /Pi /Rho /.notdef /Sigma /Tau /Upsilon /Phi /Chi /Psi /Omega /Iotadieresis /Upsilondieresis /alphatonos /epsilontonos /etatonos /iotatonos /upsilondieresistonos /alpha /beta /gamma /delta /epsilon /zeta /eta /theta /iota /kappa /lambda /mu /nu /xi /omicron /pi /rho /sigma1 /sigma /tau /upsilon /phi /chi /psi /omega /iotadieresis /upsilondieresis /omicrontonos /upsilontonos /omegatonos /.notdef'; |
||||
$file='dejavusansb-iso-8859-7.z'; |
||||
$size1=6002; |
||||
$size2=21995; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans-Bold'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-56 -236 1072 931]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>348,'!'=>456,'"'=>521,'#'=>838,'$'=>696,'%'=>1002,'&'=>872,'\''=>306,'('=>457,')'=>457,'*'=>523,'+'=>838, |
||||
','=>380,'-'=>415,'.'=>380,'/'=>365,'0'=>696,'1'=>696,'2'=>696,'3'=>696,'4'=>696,'5'=>696,'6'=>696,'7'=>696,'8'=>696,'9'=>696,':'=>400,';'=>400,'<'=>838,'='=>838,'>'=>838,'?'=>580,'@'=>1000,'A'=>774, |
||||
'B'=>762,'C'=>734,'D'=>830,'E'=>683,'F'=>683,'G'=>821,'H'=>837,'I'=>372,'J'=>372,'K'=>775,'L'=>637,'M'=>995,'N'=>837,'O'=>850,'P'=>733,'Q'=>850,'R'=>770,'S'=>720,'T'=>682,'U'=>812,'V'=>774,'W'=>1103, |
||||
'X'=>771,'Y'=>724,'Z'=>725,'['=>457,'\\'=>365,']'=>457,'^'=>838,'_'=>500,'`'=>500,'a'=>675,'b'=>716,'c'=>593,'d'=>716,'e'=>678,'f'=>435,'g'=>716,'h'=>712,'i'=>343,'j'=>343,'k'=>665,'l'=>343,'m'=>1042, |
||||
'n'=>712,'o'=>687,'p'=>716,'q'=>716,'r'=>493,'s'=>595,'t'=>478,'u'=>712,'v'=>652,'w'=>924,'x'=>645,'y'=>652,'z'=>582,'{'=>712,'|'=>365,'}'=>712,'~'=>838,chr(127)=>600,chr(128)=>600,chr(129)=>600,chr(130)=>600,chr(131)=>600, |
||||
chr(132)=>600,chr(133)=>600,chr(134)=>600,chr(135)=>600,chr(136)=>600,chr(137)=>600,chr(138)=>600,chr(139)=>600,chr(140)=>600,chr(141)=>600,chr(142)=>600,chr(143)=>600,chr(144)=>600,chr(145)=>600,chr(146)=>600,chr(147)=>600,chr(148)=>600,chr(149)=>600,chr(150)=>600,chr(151)=>600,chr(152)=>600,chr(153)=>600, |
||||
chr(154)=>600,chr(155)=>600,chr(156)=>600,chr(157)=>600,chr(158)=>600,chr(159)=>600,chr(160)=>348,chr(161)=>456,chr(162)=>696,chr(163)=>696,chr(164)=>636,chr(165)=>696,chr(166)=>365,chr(167)=>500,chr(168)=>500,chr(169)=>1000,chr(170)=>564,chr(171)=>646,chr(172)=>838,chr(173)=>415,chr(174)=>1000,chr(175)=>500, |
||||
chr(176)=>500,chr(177)=>838,chr(178)=>438,chr(179)=>438,chr(180)=>500,chr(181)=>736,chr(182)=>636,chr(183)=>380,chr(184)=>500,chr(185)=>438,chr(186)=>564,chr(187)=>646,chr(188)=>1035,chr(189)=>1035,chr(190)=>1035,chr(191)=>580,chr(192)=>774,chr(193)=>774,chr(194)=>774,chr(195)=>774,chr(196)=>774,chr(197)=>774, |
||||
chr(198)=>1085,chr(199)=>734,chr(200)=>683,chr(201)=>683,chr(202)=>683,chr(203)=>683,chr(204)=>372,chr(205)=>372,chr(206)=>372,chr(207)=>372,chr(208)=>821,chr(209)=>837,chr(210)=>850,chr(211)=>850,chr(212)=>850,chr(213)=>850,chr(214)=>850,chr(215)=>838,chr(216)=>850,chr(217)=>812,chr(218)=>812,chr(219)=>812, |
||||
chr(220)=>812,chr(221)=>372,chr(222)=>720,chr(223)=>719,chr(224)=>675,chr(225)=>675,chr(226)=>675,chr(227)=>675,chr(228)=>675,chr(229)=>675,chr(230)=>1048,chr(231)=>593,chr(232)=>678,chr(233)=>678,chr(234)=>678,chr(235)=>678,chr(236)=>343,chr(237)=>343,chr(238)=>343,chr(239)=>343,chr(240)=>716,chr(241)=>712, |
||||
chr(242)=>687,chr(243)=>687,chr(244)=>687,chr(245)=>687,chr(246)=>687,chr(247)=>838,chr(248)=>687,chr(249)=>712,chr(250)=>712,chr(251)=>712,chr(252)=>712,chr(253)=>343,chr(254)=>595,chr(255)=>652); |
||||
$enc='iso-8859-9'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 208 /Gbreve 221 /Idotaccent /Scedilla 240 /gbreve 253 /dotlessi /scedilla'; |
||||
$file='dejavusansb-iso-8859-9.z'; |
||||
$size1=6081; |
||||
$size2=26107; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans-Bold'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-56 -236 1417 928]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>348,'!'=>456,'"'=>521,'#'=>838,'$'=>696,'%'=>1002,'&'=>872,'\''=>306,'('=>457,')'=>457,'*'=>523,'+'=>838, |
||||
','=>380,'-'=>415,'.'=>380,'/'=>365,'0'=>696,'1'=>696,'2'=>696,'3'=>696,'4'=>696,'5'=>696,'6'=>696,'7'=>696,'8'=>696,'9'=>696,':'=>400,';'=>400,'<'=>838,'='=>838,'>'=>838,'?'=>580,'@'=>1000,'A'=>774, |
||||
'B'=>762,'C'=>734,'D'=>830,'E'=>683,'F'=>683,'G'=>821,'H'=>837,'I'=>372,'J'=>372,'K'=>775,'L'=>637,'M'=>995,'N'=>837,'O'=>850,'P'=>733,'Q'=>850,'R'=>770,'S'=>720,'T'=>682,'U'=>812,'V'=>774,'W'=>1103, |
||||
'X'=>771,'Y'=>724,'Z'=>725,'['=>457,'\\'=>365,']'=>457,'^'=>838,'_'=>500,'`'=>500,'a'=>675,'b'=>716,'c'=>593,'d'=>716,'e'=>678,'f'=>435,'g'=>716,'h'=>712,'i'=>343,'j'=>343,'k'=>665,'l'=>343,'m'=>1042, |
||||
'n'=>712,'o'=>687,'p'=>716,'q'=>716,'r'=>493,'s'=>595,'t'=>478,'u'=>712,'v'=>652,'w'=>924,'x'=>645,'y'=>652,'z'=>582,'{'=>712,'|'=>365,'}'=>712,'~'=>838,chr(127)=>600,chr(128)=>878,chr(129)=>637,chr(130)=>380,chr(131)=>522, |
||||
chr(132)=>657,chr(133)=>1000,chr(134)=>500,chr(135)=>500,chr(136)=>696,chr(137)=>1440,chr(138)=>1154,chr(139)=>412,chr(140)=>1130,chr(141)=>817,chr(142)=>878,chr(143)=>837,chr(144)=>714,chr(145)=>380,chr(146)=>380,chr(147)=>657,chr(148)=>657,chr(149)=>639,chr(150)=>500,chr(151)=>1000,chr(152)=>600,chr(153)=>1000, |
||||
chr(154)=>991,chr(155)=>412,chr(156)=>956,chr(157)=>679,chr(158)=>734,chr(159)=>691,chr(160)=>348,chr(161)=>771,chr(162)=>652,chr(163)=>372,chr(164)=>636,chr(165)=>637,chr(166)=>365,chr(167)=>500,chr(168)=>683,chr(169)=>1000,chr(170)=>734,chr(171)=>646,chr(172)=>838,chr(173)=>415,chr(174)=>1000,chr(175)=>372, |
||||
chr(176)=>500,chr(177)=>838,chr(178)=>372,chr(179)=>343,chr(180)=>522,chr(181)=>736,chr(182)=>636,chr(183)=>380,chr(184)=>678,chr(185)=>1203,chr(186)=>593,chr(187)=>646,chr(188)=>343,chr(189)=>720,chr(190)=>595,chr(191)=>343,chr(192)=>774,chr(193)=>762,chr(194)=>762,chr(195)=>637,chr(196)=>891,chr(197)=>683, |
||||
chr(198)=>1224,chr(199)=>710,chr(200)=>837,chr(201)=>837,chr(202)=>817,chr(203)=>831,chr(204)=>995,chr(205)=>837,chr(206)=>850,chr(207)=>837,chr(208)=>733,chr(209)=>734,chr(210)=>682,chr(211)=>771,chr(212)=>992,chr(213)=>771,chr(214)=>928,chr(215)=>808,chr(216)=>1235,chr(217)=>1326,chr(218)=>939,chr(219)=>1036, |
||||
chr(220)=>762,chr(221)=>734,chr(222)=>1174,chr(223)=>770,chr(224)=>675,chr(225)=>698,chr(226)=>633,chr(227)=>522,chr(228)=>808,chr(229)=>678,chr(230)=>995,chr(231)=>581,chr(232)=>701,chr(233)=>701,chr(234)=>679,chr(235)=>732,chr(236)=>817,chr(237)=>691,chr(238)=>687,chr(239)=>691,chr(240)=>716,chr(241)=>593, |
||||
chr(242)=>580,chr(243)=>652,chr(244)=>992,chr(245)=>645,chr(246)=>741,chr(247)=>687,chr(248)=>1062,chr(249)=>1105,chr(250)=>751,chr(251)=>904,chr(252)=>632,chr(253)=>593,chr(254)=>972,chr(255)=>642); |
||||
$enc='win-1251'; |
||||
$diff='128 /afii10051 /afii10052 131 /afii10100 136 /Euro 138 /afii10058 140 /afii10059 /afii10061 /afii10060 /afii10145 /afii10099 152 /.notdef 154 /afii10106 156 /afii10107 /afii10109 /afii10108 /afii10193 161 /afii10062 /afii10110 /afii10057 165 /afii10050 168 /afii10023 170 /afii10053 175 /afii10056 178 /afii10055 /afii10103 /afii10098 184 /afii10071 /afii61352 /afii10101 188 /afii10105 /afii10054 /afii10102 /afii10104 /afii10017 /afii10018 /afii10019 /afii10020 /afii10021 /afii10022 /afii10024 /afii10025 /afii10026 /afii10027 /afii10028 /afii10029 /afii10030 /afii10031 /afii10032 /afii10033 /afii10034 /afii10035 /afii10036 /afii10037 /afii10038 /afii10039 /afii10040 /afii10041 /afii10042 /afii10043 /afii10044 /afii10045 /afii10046 /afii10047 /afii10048 /afii10049 /afii10065 /afii10066 /afii10067 /afii10068 /afii10069 /afii10070 /afii10072 /afii10073 /afii10074 /afii10075 /afii10076 /afii10077 /afii10078 /afii10079 /afii10080 /afii10081 /afii10082 /afii10083 /afii10084 /afii10085 /afii10086 /afii10087 /afii10088 /afii10089 /afii10090 /afii10091 /afii10092 /afii10093 /afii10094 /afii10095 /afii10096 /afii10097'; |
||||
$file='dejavusansb-win-1251.z'; |
||||
$size1=6236; |
||||
$size2=26968; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans-Bold'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-57 -236 1417 931]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>348,'!'=>456,'"'=>521,'#'=>838,'$'=>696,'%'=>1002,'&'=>872,'\''=>306,'('=>457,')'=>457,'*'=>523,'+'=>838, |
||||
','=>380,'-'=>415,'.'=>380,'/'=>365,'0'=>696,'1'=>696,'2'=>696,'3'=>696,'4'=>696,'5'=>696,'6'=>696,'7'=>696,'8'=>696,'9'=>696,':'=>400,';'=>400,'<'=>838,'='=>838,'>'=>838,'?'=>580,'@'=>1000,'A'=>774, |
||||
'B'=>762,'C'=>734,'D'=>830,'E'=>683,'F'=>683,'G'=>821,'H'=>837,'I'=>372,'J'=>372,'K'=>775,'L'=>637,'M'=>995,'N'=>837,'O'=>850,'P'=>733,'Q'=>850,'R'=>770,'S'=>720,'T'=>682,'U'=>812,'V'=>774,'W'=>1103, |
||||
'X'=>771,'Y'=>724,'Z'=>725,'['=>457,'\\'=>365,']'=>457,'^'=>838,'_'=>500,'`'=>500,'a'=>675,'b'=>716,'c'=>593,'d'=>716,'e'=>678,'f'=>435,'g'=>716,'h'=>712,'i'=>343,'j'=>343,'k'=>665,'l'=>343,'m'=>1042, |
||||
'n'=>712,'o'=>687,'p'=>716,'q'=>716,'r'=>493,'s'=>595,'t'=>478,'u'=>712,'v'=>652,'w'=>924,'x'=>645,'y'=>652,'z'=>582,'{'=>712,'|'=>365,'}'=>712,'~'=>838,chr(127)=>600,chr(128)=>696,chr(129)=>600,chr(130)=>380,chr(131)=>435, |
||||
chr(132)=>657,chr(133)=>1000,chr(134)=>500,chr(135)=>500,chr(136)=>500,chr(137)=>1440,chr(138)=>720,chr(139)=>412,chr(140)=>1167,chr(141)=>600,chr(142)=>725,chr(143)=>600,chr(144)=>600,chr(145)=>380,chr(146)=>380,chr(147)=>657,chr(148)=>657,chr(149)=>639,chr(150)=>500,chr(151)=>1000,chr(152)=>500,chr(153)=>1000, |
||||
chr(154)=>595,chr(155)=>412,chr(156)=>1094,chr(157)=>600,chr(158)=>582,chr(159)=>724,chr(160)=>348,chr(161)=>456,chr(162)=>696,chr(163)=>696,chr(164)=>636,chr(165)=>696,chr(166)=>365,chr(167)=>500,chr(168)=>500,chr(169)=>1000,chr(170)=>564,chr(171)=>646,chr(172)=>838,chr(173)=>415,chr(174)=>1000,chr(175)=>500, |
||||
chr(176)=>500,chr(177)=>838,chr(178)=>438,chr(179)=>438,chr(180)=>500,chr(181)=>736,chr(182)=>636,chr(183)=>380,chr(184)=>500,chr(185)=>438,chr(186)=>564,chr(187)=>646,chr(188)=>1035,chr(189)=>1035,chr(190)=>1035,chr(191)=>580,chr(192)=>774,chr(193)=>774,chr(194)=>774,chr(195)=>774,chr(196)=>774,chr(197)=>774, |
||||
chr(198)=>1085,chr(199)=>734,chr(200)=>683,chr(201)=>683,chr(202)=>683,chr(203)=>683,chr(204)=>372,chr(205)=>372,chr(206)=>372,chr(207)=>372,chr(208)=>838,chr(209)=>837,chr(210)=>850,chr(211)=>850,chr(212)=>850,chr(213)=>850,chr(214)=>850,chr(215)=>838,chr(216)=>850,chr(217)=>812,chr(218)=>812,chr(219)=>812, |
||||
chr(220)=>812,chr(221)=>724,chr(222)=>738,chr(223)=>719,chr(224)=>675,chr(225)=>675,chr(226)=>675,chr(227)=>675,chr(228)=>675,chr(229)=>675,chr(230)=>1048,chr(231)=>593,chr(232)=>678,chr(233)=>678,chr(234)=>678,chr(235)=>678,chr(236)=>343,chr(237)=>343,chr(238)=>343,chr(239)=>343,chr(240)=>687,chr(241)=>712, |
||||
chr(242)=>687,chr(243)=>687,chr(244)=>687,chr(245)=>687,chr(246)=>687,chr(247)=>838,chr(248)=>687,chr(249)=>712,chr(250)=>712,chr(251)=>712,chr(252)=>712,chr(253)=>652,chr(254)=>716,chr(255)=>652); |
||||
$enc='win-1252'; |
||||
$diff=''; |
||||
$file='dejavusansb.z'; |
||||
$size1=6094; |
||||
$size2=29324; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans-BoldOblique'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>96,'FontBBox'=>'[-166 -236 1143 936]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>348,'!'=>456,'"'=>521,'#'=>696,'$'=>696,'%'=>1002,'&'=>872,'\''=>306,'('=>457,')'=>457,'*'=>523,'+'=>838, |
||||
','=>380,'-'=>415,'.'=>380,'/'=>365,'0'=>696,'1'=>696,'2'=>696,'3'=>696,'4'=>696,'5'=>696,'6'=>696,'7'=>696,'8'=>696,'9'=>696,':'=>400,';'=>400,'<'=>838,'='=>838,'>'=>838,'?'=>580,'@'=>1000,'A'=>774, |
||||
'B'=>762,'C'=>734,'D'=>830,'E'=>683,'F'=>683,'G'=>821,'H'=>837,'I'=>372,'J'=>372,'K'=>775,'L'=>637,'M'=>995,'N'=>837,'O'=>850,'P'=>733,'Q'=>850,'R'=>770,'S'=>720,'T'=>682,'U'=>812,'V'=>774,'W'=>1103, |
||||
'X'=>771,'Y'=>724,'Z'=>725,'['=>457,'\\'=>365,']'=>457,'^'=>838,'_'=>500,'`'=>500,'a'=>675,'b'=>716,'c'=>593,'d'=>716,'e'=>678,'f'=>435,'g'=>716,'h'=>712,'i'=>343,'j'=>343,'k'=>665,'l'=>343,'m'=>1042, |
||||
'n'=>712,'o'=>687,'p'=>716,'q'=>716,'r'=>493,'s'=>595,'t'=>478,'u'=>712,'v'=>652,'w'=>924,'x'=>645,'y'=>652,'z'=>582,'{'=>712,'|'=>365,'}'=>712,'~'=>838,chr(127)=>600,chr(128)=>600,chr(129)=>600,chr(130)=>600,chr(131)=>600, |
||||
chr(132)=>600,chr(133)=>600,chr(134)=>600,chr(135)=>600,chr(136)=>600,chr(137)=>600,chr(138)=>600,chr(139)=>600,chr(140)=>600,chr(141)=>600,chr(142)=>600,chr(143)=>600,chr(144)=>600,chr(145)=>600,chr(146)=>600,chr(147)=>600,chr(148)=>600,chr(149)=>600,chr(150)=>600,chr(151)=>600,chr(152)=>600,chr(153)=>600, |
||||
chr(154)=>600,chr(155)=>600,chr(156)=>600,chr(157)=>600,chr(158)=>600,chr(159)=>600,chr(160)=>348,chr(161)=>774,chr(162)=>500,chr(163)=>660,chr(164)=>636,chr(165)=>637,chr(166)=>720,chr(167)=>500,chr(168)=>500,chr(169)=>720,chr(170)=>720,chr(171)=>682,chr(172)=>725,chr(173)=>415,chr(174)=>725,chr(175)=>725, |
||||
chr(176)=>500,chr(177)=>675,chr(178)=>500,chr(179)=>375,chr(180)=>500,chr(181)=>343,chr(182)=>595,chr(183)=>500,chr(184)=>500,chr(185)=>595,chr(186)=>595,chr(187)=>478,chr(188)=>582,chr(189)=>500,chr(190)=>582,chr(191)=>582,chr(192)=>770,chr(193)=>774,chr(194)=>774,chr(195)=>774,chr(196)=>774,chr(197)=>637, |
||||
chr(198)=>734,chr(199)=>734,chr(200)=>734,chr(201)=>683,chr(202)=>683,chr(203)=>683,chr(204)=>683,chr(205)=>372,chr(206)=>372,chr(207)=>830,chr(208)=>845,chr(209)=>837,chr(210)=>837,chr(211)=>850,chr(212)=>850,chr(213)=>850,chr(214)=>850,chr(215)=>838,chr(216)=>770,chr(217)=>812,chr(218)=>812,chr(219)=>812, |
||||
chr(220)=>812,chr(221)=>724,chr(222)=>682,chr(223)=>719,chr(224)=>493,chr(225)=>675,chr(226)=>675,chr(227)=>675,chr(228)=>675,chr(229)=>343,chr(230)=>593,chr(231)=>593,chr(232)=>593,chr(233)=>678,chr(234)=>678,chr(235)=>678,chr(236)=>678,chr(237)=>343,chr(238)=>343,chr(239)=>716,chr(240)=>716,chr(241)=>712, |
||||
chr(242)=>712,chr(243)=>687,chr(244)=>687,chr(245)=>687,chr(246)=>687,chr(247)=>838,chr(248)=>493,chr(249)=>712,chr(250)=>712,chr(251)=>712,chr(252)=>712,chr(253)=>652,chr(254)=>478,chr(255)=>500); |
||||
$enc='iso-8859-2'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /Aogonek /breve /Lslash 165 /Lcaron /Sacute 169 /Scaron /Scedilla /Tcaron /Zacute 174 /Zcaron /Zdotaccent 177 /aogonek /ogonek /lslash 181 /lcaron /sacute /caron 185 /scaron /scedilla /tcaron /zacute /hungarumlaut /zcaron /zdotaccent /Racute 195 /Abreve 197 /Lacute /Cacute 200 /Ccaron 202 /Eogonek 204 /Ecaron 207 /Dcaron /Dcroat /Nacute /Ncaron 213 /Ohungarumlaut 216 /Rcaron /Uring 219 /Uhungarumlaut 222 /Tcommaaccent 224 /racute 227 /abreve 229 /lacute /cacute 232 /ccaron 234 /eogonek 236 /ecaron 239 /dcaron /dcroat /nacute /ncaron 245 /ohungarumlaut 248 /rcaron /uring 251 /uhungarumlaut 254 /tcommaaccent /dotaccent'; |
||||
$file='dejavusansbi-iso-8859-2.z'; |
||||
$size1=6067; |
||||
$size2=26168; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans-BoldOblique'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>96,'FontBBox'=>'[-166 -236 1143 928]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>348,'!'=>456,'"'=>521,'#'=>696,'$'=>696,'%'=>1002,'&'=>872,'\''=>306,'('=>457,')'=>457,'*'=>523,'+'=>838, |
||||
','=>380,'-'=>415,'.'=>380,'/'=>365,'0'=>696,'1'=>696,'2'=>696,'3'=>696,'4'=>696,'5'=>696,'6'=>696,'7'=>696,'8'=>696,'9'=>696,':'=>400,';'=>400,'<'=>838,'='=>838,'>'=>838,'?'=>580,'@'=>1000,'A'=>774, |
||||
'B'=>762,'C'=>734,'D'=>830,'E'=>683,'F'=>683,'G'=>821,'H'=>837,'I'=>372,'J'=>372,'K'=>775,'L'=>637,'M'=>995,'N'=>837,'O'=>850,'P'=>733,'Q'=>850,'R'=>770,'S'=>720,'T'=>682,'U'=>812,'V'=>774,'W'=>1103, |
||||
'X'=>771,'Y'=>724,'Z'=>725,'['=>457,'\\'=>365,']'=>457,'^'=>838,'_'=>500,'`'=>500,'a'=>675,'b'=>716,'c'=>593,'d'=>716,'e'=>678,'f'=>435,'g'=>716,'h'=>712,'i'=>343,'j'=>343,'k'=>665,'l'=>343,'m'=>1042, |
||||
'n'=>712,'o'=>687,'p'=>716,'q'=>716,'r'=>493,'s'=>595,'t'=>478,'u'=>712,'v'=>652,'w'=>924,'x'=>645,'y'=>652,'z'=>582,'{'=>712,'|'=>365,'}'=>712,'~'=>838,chr(127)=>600,chr(128)=>600,chr(129)=>600,chr(130)=>600,chr(131)=>600, |
||||
chr(132)=>600,chr(133)=>600,chr(134)=>600,chr(135)=>600,chr(136)=>600,chr(137)=>600,chr(138)=>600,chr(139)=>600,chr(140)=>600,chr(141)=>600,chr(142)=>600,chr(143)=>600,chr(144)=>600,chr(145)=>600,chr(146)=>600,chr(147)=>600,chr(148)=>600,chr(149)=>600,chr(150)=>600,chr(151)=>600,chr(152)=>600,chr(153)=>600, |
||||
chr(154)=>600,chr(155)=>600,chr(156)=>600,chr(157)=>600,chr(158)=>600,chr(159)=>600,chr(160)=>348,chr(161)=>774,chr(162)=>665,chr(163)=>770,chr(164)=>636,chr(165)=>372,chr(166)=>637,chr(167)=>500,chr(168)=>500,chr(169)=>720,chr(170)=>683,chr(171)=>821,chr(172)=>682,chr(173)=>415,chr(174)=>725,chr(175)=>500, |
||||
chr(176)=>500,chr(177)=>675,chr(178)=>500,chr(179)=>493,chr(180)=>500,chr(181)=>343,chr(182)=>343,chr(183)=>500,chr(184)=>500,chr(185)=>595,chr(186)=>678,chr(187)=>716,chr(188)=>478,chr(189)=>837,chr(190)=>582,chr(191)=>712,chr(192)=>774,chr(193)=>774,chr(194)=>774,chr(195)=>774,chr(196)=>774,chr(197)=>774, |
||||
chr(198)=>1085,chr(199)=>372,chr(200)=>734,chr(201)=>683,chr(202)=>683,chr(203)=>683,chr(204)=>683,chr(205)=>372,chr(206)=>372,chr(207)=>372,chr(208)=>845,chr(209)=>837,chr(210)=>850,chr(211)=>775,chr(212)=>850,chr(213)=>850,chr(214)=>850,chr(215)=>838,chr(216)=>850,chr(217)=>812,chr(218)=>812,chr(219)=>812, |
||||
chr(220)=>812,chr(221)=>812,chr(222)=>812,chr(223)=>719,chr(224)=>675,chr(225)=>675,chr(226)=>675,chr(227)=>675,chr(228)=>675,chr(229)=>675,chr(230)=>1048,chr(231)=>343,chr(232)=>593,chr(233)=>678,chr(234)=>678,chr(235)=>678,chr(236)=>678,chr(237)=>343,chr(238)=>343,chr(239)=>343,chr(240)=>716,chr(241)=>712, |
||||
chr(242)=>687,chr(243)=>665,chr(244)=>687,chr(245)=>687,chr(246)=>687,chr(247)=>838,chr(248)=>687,chr(249)=>712,chr(250)=>712,chr(251)=>712,chr(252)=>712,chr(253)=>712,chr(254)=>712,chr(255)=>500); |
||||
$enc='iso-8859-4'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /Aogonek /kgreenlandic /Rcommaaccent 165 /Itilde /Lcommaaccent 169 /Scaron /Emacron /Gcommaaccent /Tbar 174 /Zcaron 177 /aogonek /ogonek /rcommaaccent 181 /itilde /lcommaaccent /caron 185 /scaron /emacron /gcommaaccent /tbar /Eng /zcaron /eng /Amacron 199 /Iogonek /Ccaron 202 /Eogonek 204 /Edotaccent 207 /Imacron /Dcroat /Ncommaaccent /Omacron /Kcommaaccent 217 /Uogonek 221 /Utilde /Umacron 224 /amacron 231 /iogonek /ccaron 234 /eogonek 236 /edotaccent 239 /imacron /dcroat /ncommaaccent /omacron /kcommaaccent 249 /uogonek 253 /utilde /umacron /dotaccent'; |
||||
$file='dejavusansbi-iso-8859-4.z'; |
||||
$size1=6086; |
||||
$size2=26432; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans-BoldOblique'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>96,'FontBBox'=>'[-166 -236 1143 978]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>348,'!'=>456,'"'=>521,'#'=>696,'$'=>696,'%'=>1002,'&'=>872,'\''=>306,'('=>457,')'=>457,'*'=>523,'+'=>838, |
||||
','=>380,'-'=>415,'.'=>380,'/'=>365,'0'=>696,'1'=>696,'2'=>696,'3'=>696,'4'=>696,'5'=>696,'6'=>696,'7'=>696,'8'=>696,'9'=>696,':'=>400,';'=>400,'<'=>838,'='=>838,'>'=>838,'?'=>580,'@'=>1000,'A'=>774, |
||||
'B'=>762,'C'=>734,'D'=>830,'E'=>683,'F'=>683,'G'=>821,'H'=>837,'I'=>372,'J'=>372,'K'=>775,'L'=>637,'M'=>995,'N'=>837,'O'=>850,'P'=>733,'Q'=>850,'R'=>770,'S'=>720,'T'=>682,'U'=>812,'V'=>774,'W'=>1103, |
||||
'X'=>771,'Y'=>724,'Z'=>725,'['=>457,'\\'=>365,']'=>457,'^'=>838,'_'=>500,'`'=>500,'a'=>675,'b'=>716,'c'=>593,'d'=>716,'e'=>678,'f'=>435,'g'=>716,'h'=>712,'i'=>343,'j'=>343,'k'=>665,'l'=>343,'m'=>1042, |
||||
'n'=>712,'o'=>687,'p'=>716,'q'=>716,'r'=>493,'s'=>595,'t'=>478,'u'=>712,'v'=>652,'w'=>924,'x'=>645,'y'=>652,'z'=>582,'{'=>712,'|'=>365,'}'=>712,'~'=>838,chr(127)=>600,chr(128)=>600,chr(129)=>600,chr(130)=>600,chr(131)=>600, |
||||
chr(132)=>600,chr(133)=>600,chr(134)=>600,chr(135)=>600,chr(136)=>600,chr(137)=>600,chr(138)=>600,chr(139)=>600,chr(140)=>600,chr(141)=>600,chr(142)=>600,chr(143)=>600,chr(144)=>600,chr(145)=>600,chr(146)=>600,chr(147)=>600,chr(148)=>600,chr(149)=>600,chr(150)=>600,chr(151)=>600,chr(152)=>600,chr(153)=>600, |
||||
chr(154)=>600,chr(155)=>600,chr(156)=>600,chr(157)=>600,chr(158)=>600,chr(159)=>600,chr(160)=>348,chr(161)=>380,chr(162)=>380,chr(163)=>696,chr(164)=>600,chr(165)=>600,chr(166)=>365,chr(167)=>500,chr(168)=>500,chr(169)=>1000,chr(170)=>600,chr(171)=>650,chr(172)=>838,chr(173)=>415,chr(174)=>600,chr(175)=>1000, |
||||
chr(176)=>500,chr(177)=>838,chr(178)=>438,chr(179)=>438,chr(180)=>441,chr(181)=>500,chr(182)=>797,chr(183)=>380,chr(184)=>846,chr(185)=>1009,chr(186)=>563,chr(187)=>650,chr(188)=>891,chr(189)=>1035,chr(190)=>980,chr(191)=>894,chr(192)=>390,chr(193)=>774,chr(194)=>762,chr(195)=>637,chr(196)=>774,chr(197)=>683, |
||||
chr(198)=>725,chr(199)=>837,chr(200)=>850,chr(201)=>372,chr(202)=>775,chr(203)=>774,chr(204)=>995,chr(205)=>837,chr(206)=>632,chr(207)=>850,chr(208)=>837,chr(209)=>733,chr(210)=>600,chr(211)=>683,chr(212)=>682,chr(213)=>724,chr(214)=>850,chr(215)=>771,chr(216)=>850,chr(217)=>850,chr(218)=>372,chr(219)=>724, |
||||
chr(220)=>687,chr(221)=>557,chr(222)=>712,chr(223)=>390,chr(224)=>675,chr(225)=>687,chr(226)=>716,chr(227)=>681,chr(228)=>687,chr(229)=>557,chr(230)=>591,chr(231)=>712,chr(232)=>687,chr(233)=>390,chr(234)=>710,chr(235)=>633,chr(236)=>736,chr(237)=>681,chr(238)=>591,chr(239)=>687,chr(240)=>791,chr(241)=>716, |
||||
chr(242)=>593,chr(243)=>779,chr(244)=>638,chr(245)=>675,chr(246)=>782,chr(247)=>645,chr(248)=>794,chr(249)=>869,chr(250)=>390,chr(251)=>675,chr(252)=>687,chr(253)=>675,chr(254)=>869,chr(255)=>600); |
||||
$enc='iso-8859-7'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /quoteleft /quoteright 164 /.notdef /.notdef 170 /.notdef 174 /.notdef /afii00208 180 /tonos /dieresistonos /Alphatonos 184 /Epsilontonos /Etatonos /Iotatonos 188 /Omicrontonos 190 /Upsilontonos /Omegatonos /iotadieresistonos /Alpha /Beta /Gamma /Delta /Epsilon /Zeta /Eta /Theta /Iota /Kappa /Lambda /Mu /Nu /Xi /Omicron /Pi /Rho /.notdef /Sigma /Tau /Upsilon /Phi /Chi /Psi /Omega /Iotadieresis /Upsilondieresis /alphatonos /epsilontonos /etatonos /iotatonos /upsilondieresistonos /alpha /beta /gamma /delta /epsilon /zeta /eta /theta /iota /kappa /lambda /mu /nu /xi /omicron /pi /rho /sigma1 /sigma /tau /upsilon /phi /chi /psi /omega /iotadieresis /upsilondieresis /omicrontonos /upsilontonos /omegatonos /.notdef'; |
||||
$file='dejavusansbi-iso-8859-7.z'; |
||||
$size1=6042; |
||||
$size2=22641; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans-BoldOblique'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>96,'FontBBox'=>'[-166 -236 1143 928]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>348,'!'=>456,'"'=>521,'#'=>696,'$'=>696,'%'=>1002,'&'=>872,'\''=>306,'('=>457,')'=>457,'*'=>523,'+'=>838, |
||||
','=>380,'-'=>415,'.'=>380,'/'=>365,'0'=>696,'1'=>696,'2'=>696,'3'=>696,'4'=>696,'5'=>696,'6'=>696,'7'=>696,'8'=>696,'9'=>696,':'=>400,';'=>400,'<'=>838,'='=>838,'>'=>838,'?'=>580,'@'=>1000,'A'=>774, |
||||
'B'=>762,'C'=>734,'D'=>830,'E'=>683,'F'=>683,'G'=>821,'H'=>837,'I'=>372,'J'=>372,'K'=>775,'L'=>637,'M'=>995,'N'=>837,'O'=>850,'P'=>733,'Q'=>850,'R'=>770,'S'=>720,'T'=>682,'U'=>812,'V'=>774,'W'=>1103, |
||||
'X'=>771,'Y'=>724,'Z'=>725,'['=>457,'\\'=>365,']'=>457,'^'=>838,'_'=>500,'`'=>500,'a'=>675,'b'=>716,'c'=>593,'d'=>716,'e'=>678,'f'=>435,'g'=>716,'h'=>712,'i'=>343,'j'=>343,'k'=>665,'l'=>343,'m'=>1042, |
||||
'n'=>712,'o'=>687,'p'=>716,'q'=>716,'r'=>493,'s'=>595,'t'=>478,'u'=>712,'v'=>652,'w'=>924,'x'=>645,'y'=>652,'z'=>582,'{'=>712,'|'=>365,'}'=>712,'~'=>838,chr(127)=>600,chr(128)=>600,chr(129)=>600,chr(130)=>600,chr(131)=>600, |
||||
chr(132)=>600,chr(133)=>600,chr(134)=>600,chr(135)=>600,chr(136)=>600,chr(137)=>600,chr(138)=>600,chr(139)=>600,chr(140)=>600,chr(141)=>600,chr(142)=>600,chr(143)=>600,chr(144)=>600,chr(145)=>600,chr(146)=>600,chr(147)=>600,chr(148)=>600,chr(149)=>600,chr(150)=>600,chr(151)=>600,chr(152)=>600,chr(153)=>600, |
||||
chr(154)=>600,chr(155)=>600,chr(156)=>600,chr(157)=>600,chr(158)=>600,chr(159)=>600,chr(160)=>348,chr(161)=>456,chr(162)=>696,chr(163)=>696,chr(164)=>636,chr(165)=>696,chr(166)=>365,chr(167)=>500,chr(168)=>500,chr(169)=>1000,chr(170)=>564,chr(171)=>650,chr(172)=>838,chr(173)=>415,chr(174)=>1000,chr(175)=>500, |
||||
chr(176)=>500,chr(177)=>838,chr(178)=>438,chr(179)=>438,chr(180)=>500,chr(181)=>736,chr(182)=>636,chr(183)=>380,chr(184)=>500,chr(185)=>438,chr(186)=>564,chr(187)=>650,chr(188)=>1035,chr(189)=>1035,chr(190)=>1035,chr(191)=>580,chr(192)=>774,chr(193)=>774,chr(194)=>774,chr(195)=>774,chr(196)=>774,chr(197)=>774, |
||||
chr(198)=>1085,chr(199)=>734,chr(200)=>683,chr(201)=>683,chr(202)=>683,chr(203)=>683,chr(204)=>372,chr(205)=>372,chr(206)=>372,chr(207)=>372,chr(208)=>821,chr(209)=>837,chr(210)=>850,chr(211)=>850,chr(212)=>850,chr(213)=>850,chr(214)=>850,chr(215)=>838,chr(216)=>850,chr(217)=>812,chr(218)=>812,chr(219)=>812, |
||||
chr(220)=>812,chr(221)=>372,chr(222)=>720,chr(223)=>719,chr(224)=>675,chr(225)=>675,chr(226)=>675,chr(227)=>675,chr(228)=>675,chr(229)=>675,chr(230)=>1048,chr(231)=>593,chr(232)=>678,chr(233)=>678,chr(234)=>678,chr(235)=>678,chr(236)=>343,chr(237)=>343,chr(238)=>343,chr(239)=>343,chr(240)=>716,chr(241)=>712, |
||||
chr(242)=>687,chr(243)=>687,chr(244)=>687,chr(245)=>687,chr(246)=>687,chr(247)=>838,chr(248)=>687,chr(249)=>712,chr(250)=>712,chr(251)=>712,chr(252)=>712,chr(253)=>343,chr(254)=>595,chr(255)=>652); |
||||
$enc='iso-8859-9'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 208 /Gbreve 221 /Idotaccent /Scedilla 240 /gbreve 253 /dotlessi /scedilla'; |
||||
$file='dejavusansbi-iso-8859-9.z'; |
||||
$size1=6121; |
||||
$size2=26516; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans-BoldOblique'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>96,'FontBBox'=>'[-166 -236 1401 927]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>348,'!'=>456,'"'=>521,'#'=>696,'$'=>696,'%'=>1002,'&'=>872,'\''=>306,'('=>457,')'=>457,'*'=>523,'+'=>838, |
||||
','=>380,'-'=>415,'.'=>380,'/'=>365,'0'=>696,'1'=>696,'2'=>696,'3'=>696,'4'=>696,'5'=>696,'6'=>696,'7'=>696,'8'=>696,'9'=>696,':'=>400,';'=>400,'<'=>838,'='=>838,'>'=>838,'?'=>580,'@'=>1000,'A'=>774, |
||||
'B'=>762,'C'=>734,'D'=>830,'E'=>683,'F'=>683,'G'=>821,'H'=>837,'I'=>372,'J'=>372,'K'=>775,'L'=>637,'M'=>995,'N'=>837,'O'=>850,'P'=>733,'Q'=>850,'R'=>770,'S'=>720,'T'=>682,'U'=>812,'V'=>774,'W'=>1103, |
||||
'X'=>771,'Y'=>724,'Z'=>725,'['=>457,'\\'=>365,']'=>457,'^'=>838,'_'=>500,'`'=>500,'a'=>675,'b'=>716,'c'=>593,'d'=>716,'e'=>678,'f'=>435,'g'=>716,'h'=>712,'i'=>343,'j'=>343,'k'=>665,'l'=>343,'m'=>1042, |
||||
'n'=>712,'o'=>687,'p'=>716,'q'=>716,'r'=>493,'s'=>595,'t'=>478,'u'=>712,'v'=>652,'w'=>924,'x'=>645,'y'=>652,'z'=>582,'{'=>712,'|'=>365,'}'=>712,'~'=>838,chr(127)=>600,chr(128)=>878,chr(129)=>637,chr(130)=>380,chr(131)=>522, |
||||
chr(132)=>644,chr(133)=>1000,chr(134)=>500,chr(135)=>500,chr(136)=>696,chr(137)=>1454,chr(138)=>1154,chr(139)=>412,chr(140)=>1130,chr(141)=>817,chr(142)=>878,chr(143)=>837,chr(144)=>714,chr(145)=>380,chr(146)=>380,chr(147)=>644,chr(148)=>644,chr(149)=>639,chr(150)=>500,chr(151)=>1000,chr(152)=>600,chr(153)=>1000, |
||||
chr(154)=>991,chr(155)=>412,chr(156)=>956,chr(157)=>679,chr(158)=>734,chr(159)=>691,chr(160)=>348,chr(161)=>771,chr(162)=>652,chr(163)=>372,chr(164)=>636,chr(165)=>637,chr(166)=>365,chr(167)=>500,chr(168)=>683,chr(169)=>1000,chr(170)=>734,chr(171)=>650,chr(172)=>838,chr(173)=>415,chr(174)=>1000,chr(175)=>372, |
||||
chr(176)=>500,chr(177)=>838,chr(178)=>372,chr(179)=>343,chr(180)=>522,chr(181)=>736,chr(182)=>636,chr(183)=>380,chr(184)=>678,chr(185)=>1203,chr(186)=>593,chr(187)=>650,chr(188)=>343,chr(189)=>720,chr(190)=>595,chr(191)=>343,chr(192)=>774,chr(193)=>762,chr(194)=>762,chr(195)=>637,chr(196)=>891,chr(197)=>683, |
||||
chr(198)=>1224,chr(199)=>710,chr(200)=>837,chr(201)=>837,chr(202)=>817,chr(203)=>831,chr(204)=>995,chr(205)=>837,chr(206)=>850,chr(207)=>837,chr(208)=>733,chr(209)=>734,chr(210)=>682,chr(211)=>771,chr(212)=>992,chr(213)=>771,chr(214)=>928,chr(215)=>808,chr(216)=>1235,chr(217)=>1326,chr(218)=>939,chr(219)=>1036, |
||||
chr(220)=>762,chr(221)=>734,chr(222)=>1174,chr(223)=>770,chr(224)=>675,chr(225)=>698,chr(226)=>633,chr(227)=>522,chr(228)=>808,chr(229)=>678,chr(230)=>995,chr(231)=>581,chr(232)=>701,chr(233)=>701,chr(234)=>679,chr(235)=>732,chr(236)=>817,chr(237)=>691,chr(238)=>687,chr(239)=>691,chr(240)=>716,chr(241)=>593, |
||||
chr(242)=>580,chr(243)=>652,chr(244)=>992,chr(245)=>645,chr(246)=>741,chr(247)=>687,chr(248)=>1062,chr(249)=>1105,chr(250)=>751,chr(251)=>904,chr(252)=>632,chr(253)=>593,chr(254)=>972,chr(255)=>642); |
||||
$enc='win-1251'; |
||||
$diff='128 /afii10051 /afii10052 131 /afii10100 136 /Euro 138 /afii10058 140 /afii10059 /afii10061 /afii10060 /afii10145 /afii10099 152 /.notdef 154 /afii10106 156 /afii10107 /afii10109 /afii10108 /afii10193 161 /afii10062 /afii10110 /afii10057 165 /afii10050 168 /afii10023 170 /afii10053 175 /afii10056 178 /afii10055 /afii10103 /afii10098 184 /afii10071 /afii61352 /afii10101 188 /afii10105 /afii10054 /afii10102 /afii10104 /afii10017 /afii10018 /afii10019 /afii10020 /afii10021 /afii10022 /afii10024 /afii10025 /afii10026 /afii10027 /afii10028 /afii10029 /afii10030 /afii10031 /afii10032 /afii10033 /afii10034 /afii10035 /afii10036 /afii10037 /afii10038 /afii10039 /afii10040 /afii10041 /afii10042 /afii10043 /afii10044 /afii10045 /afii10046 /afii10047 /afii10048 /afii10049 /afii10065 /afii10066 /afii10067 /afii10068 /afii10069 /afii10070 /afii10072 /afii10073 /afii10074 /afii10075 /afii10076 /afii10077 /afii10078 /afii10079 /afii10080 /afii10081 /afii10082 /afii10083 /afii10084 /afii10085 /afii10086 /afii10087 /afii10088 /afii10089 /afii10090 /afii10091 /afii10092 /afii10093 /afii10094 /afii10095 /afii10096 /afii10097'; |
||||
$file='dejavusansbi-win-1251.z'; |
||||
$size1=6276; |
||||
$size2=27606; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSans-BoldOblique'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>96,'FontBBox'=>'[-166 -236 1401 928]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>600); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>600,chr(1)=>600,chr(2)=>600,chr(3)=>600,chr(4)=>600,chr(5)=>600,chr(6)=>600,chr(7)=>600,chr(8)=>600,chr(9)=>600,chr(10)=>600,chr(11)=>600,chr(12)=>600,chr(13)=>600,chr(14)=>600,chr(15)=>600,chr(16)=>600,chr(17)=>600,chr(18)=>600,chr(19)=>600,chr(20)=>600,chr(21)=>600, |
||||
chr(22)=>600,chr(23)=>600,chr(24)=>600,chr(25)=>600,chr(26)=>600,chr(27)=>600,chr(28)=>600,chr(29)=>600,chr(30)=>600,chr(31)=>600,' '=>348,'!'=>456,'"'=>521,'#'=>696,'$'=>696,'%'=>1002,'&'=>872,'\''=>306,'('=>457,')'=>457,'*'=>523,'+'=>838, |
||||
','=>380,'-'=>415,'.'=>380,'/'=>365,'0'=>696,'1'=>696,'2'=>696,'3'=>696,'4'=>696,'5'=>696,'6'=>696,'7'=>696,'8'=>696,'9'=>696,':'=>400,';'=>400,'<'=>838,'='=>838,'>'=>838,'?'=>580,'@'=>1000,'A'=>774, |
||||
'B'=>762,'C'=>734,'D'=>830,'E'=>683,'F'=>683,'G'=>821,'H'=>837,'I'=>372,'J'=>372,'K'=>775,'L'=>637,'M'=>995,'N'=>837,'O'=>850,'P'=>733,'Q'=>850,'R'=>770,'S'=>720,'T'=>682,'U'=>812,'V'=>774,'W'=>1103, |
||||
'X'=>771,'Y'=>724,'Z'=>725,'['=>457,'\\'=>365,']'=>457,'^'=>838,'_'=>500,'`'=>500,'a'=>675,'b'=>716,'c'=>593,'d'=>716,'e'=>678,'f'=>435,'g'=>716,'h'=>712,'i'=>343,'j'=>343,'k'=>665,'l'=>343,'m'=>1042, |
||||
'n'=>712,'o'=>687,'p'=>716,'q'=>716,'r'=>493,'s'=>595,'t'=>478,'u'=>712,'v'=>652,'w'=>924,'x'=>645,'y'=>652,'z'=>582,'{'=>712,'|'=>365,'}'=>712,'~'=>838,chr(127)=>600,chr(128)=>696,chr(129)=>600,chr(130)=>380,chr(131)=>435, |
||||
chr(132)=>644,chr(133)=>1000,chr(134)=>500,chr(135)=>500,chr(136)=>500,chr(137)=>1454,chr(138)=>720,chr(139)=>412,chr(140)=>1167,chr(141)=>600,chr(142)=>725,chr(143)=>600,chr(144)=>600,chr(145)=>380,chr(146)=>380,chr(147)=>644,chr(148)=>644,chr(149)=>639,chr(150)=>500,chr(151)=>1000,chr(152)=>500,chr(153)=>1000, |
||||
chr(154)=>595,chr(155)=>412,chr(156)=>1094,chr(157)=>600,chr(158)=>582,chr(159)=>724,chr(160)=>348,chr(161)=>456,chr(162)=>696,chr(163)=>696,chr(164)=>636,chr(165)=>696,chr(166)=>365,chr(167)=>500,chr(168)=>500,chr(169)=>1000,chr(170)=>564,chr(171)=>650,chr(172)=>838,chr(173)=>415,chr(174)=>1000,chr(175)=>500, |
||||
chr(176)=>500,chr(177)=>838,chr(178)=>438,chr(179)=>438,chr(180)=>500,chr(181)=>736,chr(182)=>636,chr(183)=>380,chr(184)=>500,chr(185)=>438,chr(186)=>564,chr(187)=>650,chr(188)=>1035,chr(189)=>1035,chr(190)=>1035,chr(191)=>580,chr(192)=>774,chr(193)=>774,chr(194)=>774,chr(195)=>774,chr(196)=>774,chr(197)=>774, |
||||
chr(198)=>1085,chr(199)=>734,chr(200)=>683,chr(201)=>683,chr(202)=>683,chr(203)=>683,chr(204)=>372,chr(205)=>372,chr(206)=>372,chr(207)=>372,chr(208)=>845,chr(209)=>837,chr(210)=>850,chr(211)=>850,chr(212)=>850,chr(213)=>850,chr(214)=>850,chr(215)=>838,chr(216)=>850,chr(217)=>812,chr(218)=>812,chr(219)=>812, |
||||
chr(220)=>812,chr(221)=>724,chr(222)=>742,chr(223)=>719,chr(224)=>675,chr(225)=>675,chr(226)=>675,chr(227)=>675,chr(228)=>675,chr(229)=>675,chr(230)=>1048,chr(231)=>593,chr(232)=>678,chr(233)=>678,chr(234)=>678,chr(235)=>678,chr(236)=>343,chr(237)=>343,chr(238)=>343,chr(239)=>343,chr(240)=>687,chr(241)=>712, |
||||
chr(242)=>687,chr(243)=>687,chr(244)=>687,chr(245)=>687,chr(246)=>687,chr(247)=>838,chr(248)=>687,chr(249)=>712,chr(250)=>712,chr(251)=>712,chr(252)=>712,chr(253)=>652,chr(254)=>716,chr(255)=>652); |
||||
$enc='win-1252'; |
||||
$diff=''; |
||||
$file='dejavusansbi.z'; |
||||
$size1=6134; |
||||
$size2=29744; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-46 -236 860 946]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>286,'!'=>360,'"'=>414,'#'=>754,'$'=>572,'%'=>855,'&'=>702,'\''=>247,'('=>351,')'=>351,'*'=>450,'+'=>754, |
||||
','=>286,'-'=>325,'.'=>286,'/'=>303,'0'=>572,'1'=>572,'2'=>572,'3'=>572,'4'=>572,'5'=>572,'6'=>572,'7'=>572,'8'=>572,'9'=>572,':'=>303,';'=>303,'<'=>754,'='=>754,'>'=>754,'?'=>478,'@'=>900,'A'=>615, |
||||
'B'=>617,'C'=>628,'D'=>693,'E'=>568,'F'=>518,'G'=>697,'H'=>677,'I'=>265,'J'=>265,'K'=>590,'L'=>501,'M'=>776,'N'=>673,'O'=>708,'P'=>542,'Q'=>708,'R'=>625,'S'=>571,'T'=>549,'U'=>659,'V'=>615,'W'=>890, |
||||
'X'=>616,'Y'=>549,'Z'=>616,'['=>351,'\\'=>303,']'=>351,'^'=>754,'_'=>450,'`'=>450,'a'=>551,'b'=>571,'c'=>495,'d'=>571,'e'=>554,'f'=>316,'g'=>571,'h'=>570,'i'=>250,'j'=>250,'k'=>521,'l'=>250,'m'=>876, |
||||
'n'=>570,'o'=>550,'p'=>571,'q'=>571,'r'=>370,'s'=>469,'t'=>353,'u'=>570,'v'=>532,'w'=>736,'x'=>532,'y'=>532,'z'=>472,'{'=>572,'|'=>303,'}'=>572,'~'=>754,chr(127)=>540,chr(128)=>540,chr(129)=>540,chr(130)=>540,chr(131)=>540, |
||||
chr(132)=>540,chr(133)=>540,chr(134)=>540,chr(135)=>540,chr(136)=>540,chr(137)=>540,chr(138)=>540,chr(139)=>540,chr(140)=>540,chr(141)=>540,chr(142)=>540,chr(143)=>540,chr(144)=>540,chr(145)=>540,chr(146)=>540,chr(147)=>540,chr(148)=>540,chr(149)=>540,chr(150)=>540,chr(151)=>540,chr(152)=>540,chr(153)=>540, |
||||
chr(154)=>540,chr(155)=>540,chr(156)=>540,chr(157)=>540,chr(158)=>540,chr(159)=>540,chr(160)=>286,chr(161)=>615,chr(162)=>450,chr(163)=>505,chr(164)=>572,chr(165)=>501,chr(166)=>571,chr(167)=>450,chr(168)=>450,chr(169)=>571,chr(170)=>571,chr(171)=>549,chr(172)=>616,chr(173)=>325,chr(174)=>616,chr(175)=>616, |
||||
chr(176)=>450,chr(177)=>551,chr(178)=>450,chr(179)=>255,chr(180)=>450,chr(181)=>337,chr(182)=>469,chr(183)=>450,chr(184)=>450,chr(185)=>469,chr(186)=>469,chr(187)=>353,chr(188)=>472,chr(189)=>450,chr(190)=>472,chr(191)=>472,chr(192)=>625,chr(193)=>615,chr(194)=>615,chr(195)=>615,chr(196)=>615,chr(197)=>501, |
||||
chr(198)=>628,chr(199)=>628,chr(200)=>628,chr(201)=>568,chr(202)=>568,chr(203)=>568,chr(204)=>568,chr(205)=>265,chr(206)=>265,chr(207)=>693,chr(208)=>697,chr(209)=>673,chr(210)=>673,chr(211)=>708,chr(212)=>708,chr(213)=>708,chr(214)=>708,chr(215)=>754,chr(216)=>625,chr(217)=>659,chr(218)=>659,chr(219)=>659, |
||||
chr(220)=>659,chr(221)=>549,chr(222)=>549,chr(223)=>567,chr(224)=>370,chr(225)=>551,chr(226)=>551,chr(227)=>551,chr(228)=>551,chr(229)=>250,chr(230)=>495,chr(231)=>495,chr(232)=>495,chr(233)=>554,chr(234)=>554,chr(235)=>554,chr(236)=>554,chr(237)=>250,chr(238)=>250,chr(239)=>571,chr(240)=>571,chr(241)=>570, |
||||
chr(242)=>570,chr(243)=>550,chr(244)=>550,chr(245)=>550,chr(246)=>550,chr(247)=>754,chr(248)=>370,chr(249)=>570,chr(250)=>570,chr(251)=>570,chr(252)=>570,chr(253)=>532,chr(254)=>353,chr(255)=>450); |
||||
$enc='iso-8859-2'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /Aogonek /breve /Lslash 165 /Lcaron /Sacute 169 /Scaron /Scedilla /Tcaron /Zacute 174 /Zcaron /Zdotaccent 177 /aogonek /ogonek /lslash 181 /lcaron /sacute /caron 185 /scaron /scedilla /tcaron /zacute /hungarumlaut /zcaron /zdotaccent /Racute 195 /Abreve 197 /Lacute /Cacute 200 /Ccaron 202 /Eogonek 204 /Ecaron 207 /Dcaron /Dcroat /Nacute /Ncaron 213 /Ohungarumlaut 216 /Rcaron /Uring 219 /Uhungarumlaut 222 /Tcommaaccent 224 /racute 227 /abreve 229 /lacute /cacute 232 /ccaron 234 /eogonek 236 /ecaron 239 /dcaron /dcroat /nacute /ncaron 245 /ohungarumlaut 248 /rcaron /uring 251 /uhungarumlaut 254 /tcommaaccent /dotaccent'; |
||||
$file='dejavusanscondensed-iso-8859-2.z'; |
||||
$size1=6053; |
||||
$size2=24615; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-46 -250 860 928]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>286,'!'=>360,'"'=>414,'#'=>754,'$'=>572,'%'=>855,'&'=>702,'\''=>247,'('=>351,')'=>351,'*'=>450,'+'=>754, |
||||
','=>286,'-'=>325,'.'=>286,'/'=>303,'0'=>572,'1'=>572,'2'=>572,'3'=>572,'4'=>572,'5'=>572,'6'=>572,'7'=>572,'8'=>572,'9'=>572,':'=>303,';'=>303,'<'=>754,'='=>754,'>'=>754,'?'=>478,'@'=>900,'A'=>615, |
||||
'B'=>617,'C'=>628,'D'=>693,'E'=>568,'F'=>518,'G'=>697,'H'=>677,'I'=>265,'J'=>265,'K'=>590,'L'=>501,'M'=>776,'N'=>673,'O'=>708,'P'=>542,'Q'=>708,'R'=>625,'S'=>571,'T'=>549,'U'=>659,'V'=>615,'W'=>890, |
||||
'X'=>616,'Y'=>549,'Z'=>616,'['=>351,'\\'=>303,']'=>351,'^'=>754,'_'=>450,'`'=>450,'a'=>551,'b'=>571,'c'=>495,'d'=>571,'e'=>554,'f'=>316,'g'=>571,'h'=>570,'i'=>250,'j'=>250,'k'=>521,'l'=>250,'m'=>876, |
||||
'n'=>570,'o'=>550,'p'=>571,'q'=>571,'r'=>370,'s'=>469,'t'=>353,'u'=>570,'v'=>532,'w'=>736,'x'=>532,'y'=>532,'z'=>472,'{'=>572,'|'=>303,'}'=>572,'~'=>754,chr(127)=>540,chr(128)=>540,chr(129)=>540,chr(130)=>540,chr(131)=>540, |
||||
chr(132)=>540,chr(133)=>540,chr(134)=>540,chr(135)=>540,chr(136)=>540,chr(137)=>540,chr(138)=>540,chr(139)=>540,chr(140)=>540,chr(141)=>540,chr(142)=>540,chr(143)=>540,chr(144)=>540,chr(145)=>540,chr(146)=>540,chr(147)=>540,chr(148)=>540,chr(149)=>540,chr(150)=>540,chr(151)=>540,chr(152)=>540,chr(153)=>540, |
||||
chr(154)=>540,chr(155)=>540,chr(156)=>540,chr(157)=>540,chr(158)=>540,chr(159)=>540,chr(160)=>286,chr(161)=>615,chr(162)=>521,chr(163)=>625,chr(164)=>572,chr(165)=>265,chr(166)=>501,chr(167)=>450,chr(168)=>450,chr(169)=>571,chr(170)=>568,chr(171)=>697,chr(172)=>549,chr(173)=>325,chr(174)=>616,chr(175)=>450, |
||||
chr(176)=>450,chr(177)=>551,chr(178)=>450,chr(179)=>370,chr(180)=>450,chr(181)=>250,chr(182)=>250,chr(183)=>450,chr(184)=>450,chr(185)=>469,chr(186)=>554,chr(187)=>571,chr(188)=>353,chr(189)=>673,chr(190)=>472,chr(191)=>570,chr(192)=>615,chr(193)=>615,chr(194)=>615,chr(195)=>615,chr(196)=>615,chr(197)=>615, |
||||
chr(198)=>876,chr(199)=>265,chr(200)=>628,chr(201)=>568,chr(202)=>568,chr(203)=>568,chr(204)=>568,chr(205)=>265,chr(206)=>265,chr(207)=>265,chr(208)=>697,chr(209)=>673,chr(210)=>708,chr(211)=>590,chr(212)=>708,chr(213)=>708,chr(214)=>708,chr(215)=>754,chr(216)=>708,chr(217)=>659,chr(218)=>659,chr(219)=>659, |
||||
chr(220)=>659,chr(221)=>659,chr(222)=>659,chr(223)=>567,chr(224)=>551,chr(225)=>551,chr(226)=>551,chr(227)=>551,chr(228)=>551,chr(229)=>551,chr(230)=>883,chr(231)=>250,chr(232)=>495,chr(233)=>554,chr(234)=>554,chr(235)=>554,chr(236)=>554,chr(237)=>250,chr(238)=>250,chr(239)=>250,chr(240)=>571,chr(241)=>570, |
||||
chr(242)=>550,chr(243)=>521,chr(244)=>550,chr(245)=>550,chr(246)=>550,chr(247)=>754,chr(248)=>550,chr(249)=>570,chr(250)=>570,chr(251)=>570,chr(252)=>570,chr(253)=>570,chr(254)=>570,chr(255)=>450); |
||||
$enc='iso-8859-4'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /Aogonek /kgreenlandic /Rcommaaccent 165 /Itilde /Lcommaaccent 169 /Scaron /Emacron /Gcommaaccent /Tbar 174 /Zcaron 177 /aogonek /ogonek /rcommaaccent 181 /itilde /lcommaaccent /caron 185 /scaron /emacron /gcommaaccent /tbar /Eng /zcaron /eng /Amacron 199 /Iogonek /Ccaron 202 /Eogonek 204 /Edotaccent 207 /Imacron /Dcroat /Ncommaaccent /Omacron /Kcommaaccent 217 /Uogonek 221 /Utilde /Umacron 224 /amacron 231 /iogonek /ccaron 234 /eogonek 236 /edotaccent 239 /imacron /dcroat /ncommaaccent /omacron /kcommaaccent 249 /uogonek 253 /utilde /umacron /dotaccent'; |
||||
$file='dejavusanscondensed-iso-8859-4.z'; |
||||
$size1=6072; |
||||
$size2=24882; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-46 -236 900 978]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>286,'!'=>360,'"'=>414,'#'=>754,'$'=>572,'%'=>855,'&'=>702,'\''=>247,'('=>351,')'=>351,'*'=>450,'+'=>754, |
||||
','=>286,'-'=>325,'.'=>286,'/'=>303,'0'=>572,'1'=>572,'2'=>572,'3'=>572,'4'=>572,'5'=>572,'6'=>572,'7'=>572,'8'=>572,'9'=>572,':'=>303,';'=>303,'<'=>754,'='=>754,'>'=>754,'?'=>478,'@'=>900,'A'=>615, |
||||
'B'=>617,'C'=>628,'D'=>693,'E'=>568,'F'=>518,'G'=>697,'H'=>677,'I'=>265,'J'=>265,'K'=>590,'L'=>501,'M'=>776,'N'=>673,'O'=>708,'P'=>542,'Q'=>708,'R'=>625,'S'=>571,'T'=>549,'U'=>659,'V'=>615,'W'=>890, |
||||
'X'=>616,'Y'=>549,'Z'=>616,'['=>351,'\\'=>303,']'=>351,'^'=>754,'_'=>450,'`'=>450,'a'=>551,'b'=>571,'c'=>495,'d'=>571,'e'=>554,'f'=>316,'g'=>571,'h'=>570,'i'=>250,'j'=>250,'k'=>521,'l'=>250,'m'=>876, |
||||
'n'=>570,'o'=>550,'p'=>571,'q'=>571,'r'=>370,'s'=>469,'t'=>353,'u'=>570,'v'=>532,'w'=>736,'x'=>532,'y'=>532,'z'=>472,'{'=>572,'|'=>303,'}'=>572,'~'=>754,chr(127)=>540,chr(128)=>540,chr(129)=>540,chr(130)=>540,chr(131)=>540, |
||||
chr(132)=>540,chr(133)=>540,chr(134)=>540,chr(135)=>540,chr(136)=>540,chr(137)=>540,chr(138)=>540,chr(139)=>540,chr(140)=>540,chr(141)=>540,chr(142)=>540,chr(143)=>540,chr(144)=>540,chr(145)=>540,chr(146)=>540,chr(147)=>540,chr(148)=>540,chr(149)=>540,chr(150)=>540,chr(151)=>540,chr(152)=>540,chr(153)=>540, |
||||
chr(154)=>540,chr(155)=>540,chr(156)=>540,chr(157)=>540,chr(158)=>540,chr(159)=>540,chr(160)=>286,chr(161)=>286,chr(162)=>286,chr(163)=>572,chr(164)=>540,chr(165)=>540,chr(166)=>303,chr(167)=>450,chr(168)=>450,chr(169)=>900,chr(170)=>540,chr(171)=>550,chr(172)=>754,chr(173)=>325,chr(174)=>540,chr(175)=>900, |
||||
chr(176)=>450,chr(177)=>754,chr(178)=>360,chr(179)=>360,chr(180)=>450,chr(181)=>450,chr(182)=>623,chr(183)=>286,chr(184)=>671,chr(185)=>784,chr(186)=>367,chr(187)=>550,chr(188)=>731,chr(189)=>872,chr(190)=>742,chr(191)=>743,chr(192)=>304,chr(193)=>615,chr(194)=>617,chr(195)=>501,chr(196)=>615,chr(197)=>568, |
||||
chr(198)=>616,chr(199)=>677,chr(200)=>708,chr(201)=>265,chr(202)=>590,chr(203)=>615,chr(204)=>776,chr(205)=>673,chr(206)=>568,chr(207)=>708,chr(208)=>677,chr(209)=>542,chr(210)=>540,chr(211)=>568,chr(212)=>549,chr(213)=>549,chr(214)=>708,chr(215)=>616,chr(216)=>708,chr(217)=>688,chr(218)=>265,chr(219)=>549, |
||||
chr(220)=>593,chr(221)=>486,chr(222)=>570,chr(223)=>304,chr(224)=>521,chr(225)=>593,chr(226)=>574,chr(227)=>532,chr(228)=>550,chr(229)=>486,chr(230)=>489,chr(231)=>570,chr(232)=>550,chr(233)=>304,chr(234)=>530,chr(235)=>532,chr(236)=>572,chr(237)=>502,chr(238)=>501,chr(239)=>550,chr(240)=>542,chr(241)=>571, |
||||
chr(242)=>528,chr(243)=>570,chr(244)=>542,chr(245)=>521,chr(246)=>593,chr(247)=>520,chr(248)=>593,chr(249)=>753,chr(250)=>304,chr(251)=>521,chr(252)=>550,chr(253)=>521,chr(254)=>753,chr(255)=>540); |
||||
$enc='iso-8859-7'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /quoteleft /quoteright 164 /.notdef /.notdef 170 /.notdef 174 /.notdef /afii00208 180 /tonos /dieresistonos /Alphatonos 184 /Epsilontonos /Etatonos /Iotatonos 188 /Omicrontonos 190 /Upsilontonos /Omegatonos /iotadieresistonos /Alpha /Beta /Gamma /Delta /Epsilon /Zeta /Eta /Theta /Iota /Kappa /Lambda /Mu /Nu /Xi /Omicron /Pi /Rho /.notdef /Sigma /Tau /Upsilon /Phi /Chi /Psi /Omega /Iotadieresis /Upsilondieresis /alphatonos /epsilontonos /etatonos /iotatonos /upsilondieresistonos /alpha /beta /gamma /delta /epsilon /zeta /eta /theta /iota /kappa /lambda /mu /nu /xi /omicron /pi /rho /sigma1 /sigma /tau /upsilon /phi /chi /psi /omega /iotadieresis /upsilondieresis /omicrontonos /upsilontonos /omegatonos /.notdef'; |
||||
$file='dejavusanscondensed-iso-8859-7.z'; |
||||
$size1=6028; |
||||
$size2=21110; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-46 -236 860 928]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>286,'!'=>360,'"'=>414,'#'=>754,'$'=>572,'%'=>855,'&'=>702,'\''=>247,'('=>351,')'=>351,'*'=>450,'+'=>754, |
||||
','=>286,'-'=>325,'.'=>286,'/'=>303,'0'=>572,'1'=>572,'2'=>572,'3'=>572,'4'=>572,'5'=>572,'6'=>572,'7'=>572,'8'=>572,'9'=>572,':'=>303,';'=>303,'<'=>754,'='=>754,'>'=>754,'?'=>478,'@'=>900,'A'=>615, |
||||
'B'=>617,'C'=>628,'D'=>693,'E'=>568,'F'=>518,'G'=>697,'H'=>677,'I'=>265,'J'=>265,'K'=>590,'L'=>501,'M'=>776,'N'=>673,'O'=>708,'P'=>542,'Q'=>708,'R'=>625,'S'=>571,'T'=>549,'U'=>659,'V'=>615,'W'=>890, |
||||
'X'=>616,'Y'=>549,'Z'=>616,'['=>351,'\\'=>303,']'=>351,'^'=>754,'_'=>450,'`'=>450,'a'=>551,'b'=>571,'c'=>495,'d'=>571,'e'=>554,'f'=>316,'g'=>571,'h'=>570,'i'=>250,'j'=>250,'k'=>521,'l'=>250,'m'=>876, |
||||
'n'=>570,'o'=>550,'p'=>571,'q'=>571,'r'=>370,'s'=>469,'t'=>353,'u'=>570,'v'=>532,'w'=>736,'x'=>532,'y'=>532,'z'=>472,'{'=>572,'|'=>303,'}'=>572,'~'=>754,chr(127)=>540,chr(128)=>540,chr(129)=>540,chr(130)=>540,chr(131)=>540, |
||||
chr(132)=>540,chr(133)=>540,chr(134)=>540,chr(135)=>540,chr(136)=>540,chr(137)=>540,chr(138)=>540,chr(139)=>540,chr(140)=>540,chr(141)=>540,chr(142)=>540,chr(143)=>540,chr(144)=>540,chr(145)=>540,chr(146)=>540,chr(147)=>540,chr(148)=>540,chr(149)=>540,chr(150)=>540,chr(151)=>540,chr(152)=>540,chr(153)=>540, |
||||
chr(154)=>540,chr(155)=>540,chr(156)=>540,chr(157)=>540,chr(158)=>540,chr(159)=>540,chr(160)=>286,chr(161)=>360,chr(162)=>572,chr(163)=>572,chr(164)=>572,chr(165)=>572,chr(166)=>303,chr(167)=>450,chr(168)=>450,chr(169)=>900,chr(170)=>424,chr(171)=>550,chr(172)=>754,chr(173)=>325,chr(174)=>900,chr(175)=>450, |
||||
chr(176)=>450,chr(177)=>754,chr(178)=>360,chr(179)=>360,chr(180)=>450,chr(181)=>572,chr(182)=>572,chr(183)=>286,chr(184)=>450,chr(185)=>360,chr(186)=>424,chr(187)=>550,chr(188)=>872,chr(189)=>872,chr(190)=>872,chr(191)=>478,chr(192)=>615,chr(193)=>615,chr(194)=>615,chr(195)=>615,chr(196)=>615,chr(197)=>615, |
||||
chr(198)=>876,chr(199)=>628,chr(200)=>568,chr(201)=>568,chr(202)=>568,chr(203)=>568,chr(204)=>265,chr(205)=>265,chr(206)=>265,chr(207)=>265,chr(208)=>697,chr(209)=>673,chr(210)=>708,chr(211)=>708,chr(212)=>708,chr(213)=>708,chr(214)=>708,chr(215)=>754,chr(216)=>708,chr(217)=>659,chr(218)=>659,chr(219)=>659, |
||||
chr(220)=>659,chr(221)=>265,chr(222)=>571,chr(223)=>567,chr(224)=>551,chr(225)=>551,chr(226)=>551,chr(227)=>551,chr(228)=>551,chr(229)=>551,chr(230)=>883,chr(231)=>495,chr(232)=>554,chr(233)=>554,chr(234)=>554,chr(235)=>554,chr(236)=>250,chr(237)=>250,chr(238)=>250,chr(239)=>250,chr(240)=>571,chr(241)=>570, |
||||
chr(242)=>550,chr(243)=>550,chr(244)=>550,chr(245)=>550,chr(246)=>550,chr(247)=>754,chr(248)=>550,chr(249)=>570,chr(250)=>570,chr(251)=>570,chr(252)=>570,chr(253)=>250,chr(254)=>469,chr(255)=>532); |
||||
$enc='iso-8859-9'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 208 /Gbreve 221 /Idotaccent /Scedilla 240 /gbreve 253 /dotlessi /scedilla'; |
||||
$file='dejavusanscondensed-iso-8859-9.z'; |
||||
$size1=6107; |
||||
$size2=25111; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-46 -236 1158 928]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>286,'!'=>360,'"'=>414,'#'=>754,'$'=>572,'%'=>855,'&'=>702,'\''=>247,'('=>351,')'=>351,'*'=>450,'+'=>754, |
||||
','=>286,'-'=>325,'.'=>286,'/'=>303,'0'=>572,'1'=>572,'2'=>572,'3'=>572,'4'=>572,'5'=>572,'6'=>572,'7'=>572,'8'=>572,'9'=>572,':'=>303,';'=>303,'<'=>754,'='=>754,'>'=>754,'?'=>478,'@'=>900,'A'=>615, |
||||
'B'=>617,'C'=>628,'D'=>693,'E'=>568,'F'=>518,'G'=>697,'H'=>677,'I'=>265,'J'=>265,'K'=>590,'L'=>501,'M'=>776,'N'=>673,'O'=>708,'P'=>542,'Q'=>708,'R'=>625,'S'=>571,'T'=>549,'U'=>659,'V'=>615,'W'=>890, |
||||
'X'=>616,'Y'=>549,'Z'=>616,'['=>351,'\\'=>303,']'=>351,'^'=>754,'_'=>450,'`'=>450,'a'=>551,'b'=>571,'c'=>495,'d'=>571,'e'=>554,'f'=>316,'g'=>571,'h'=>570,'i'=>250,'j'=>250,'k'=>521,'l'=>250,'m'=>876, |
||||
'n'=>570,'o'=>550,'p'=>571,'q'=>571,'r'=>370,'s'=>469,'t'=>353,'u'=>570,'v'=>532,'w'=>736,'x'=>532,'y'=>532,'z'=>472,'{'=>572,'|'=>303,'}'=>572,'~'=>754,chr(127)=>540,chr(128)=>708,chr(129)=>549,chr(130)=>286,chr(131)=>473, |
||||
chr(132)=>466,chr(133)=>900,chr(134)=>450,chr(135)=>450,chr(136)=>572,chr(137)=>1208,chr(138)=>984,chr(139)=>360,chr(140)=>940,chr(141)=>639,chr(142)=>708,chr(143)=>677,chr(144)=>563,chr(145)=>286,chr(146)=>286,chr(147)=>466,chr(148)=>466,chr(149)=>531,chr(150)=>450,chr(151)=>900,chr(152)=>540,chr(153)=>900, |
||||
chr(154)=>812,chr(155)=>360,chr(156)=>809,chr(157)=>543,chr(158)=>586,chr(159)=>588,chr(160)=>286,chr(161)=>548,chr(162)=>532,chr(163)=>265,chr(164)=>572,chr(165)=>549,chr(166)=>303,chr(167)=>450,chr(168)=>568,chr(169)=>900,chr(170)=>628,chr(171)=>550,chr(172)=>754,chr(173)=>325,chr(174)=>900,chr(175)=>265, |
||||
chr(176)=>450,chr(177)=>754,chr(178)=>265,chr(179)=>250,chr(180)=>473,chr(181)=>572,chr(182)=>572,chr(183)=>286,chr(184)=>554,chr(185)=>936,chr(186)=>494,chr(187)=>550,chr(188)=>250,chr(189)=>571,chr(190)=>469,chr(191)=>250,chr(192)=>615,chr(193)=>617,chr(194)=>617,chr(195)=>549,chr(196)=>703,chr(197)=>568, |
||||
chr(198)=>969,chr(199)=>577,chr(200)=>673,chr(201)=>673,chr(202)=>639,chr(203)=>677,chr(204)=>776,chr(205)=>677,chr(206)=>708,chr(207)=>677,chr(208)=>542,chr(209)=>628,chr(210)=>549,chr(211)=>548,chr(212)=>774,chr(213)=>616,chr(214)=>699,chr(215)=>617,chr(216)=>962,chr(217)=>984,chr(218)=>749,chr(219)=>794, |
||||
chr(220)=>617,chr(221)=>628,chr(222)=>971,chr(223)=>625,chr(224)=>551,chr(225)=>555,chr(226)=>530,chr(227)=>473,chr(228)=>622,chr(229)=>554,chr(230)=>811,chr(231)=>479,chr(232)=>584,chr(233)=>584,chr(234)=>543,chr(235)=>575,chr(236)=>679,chr(237)=>588,chr(238)=>550,chr(239)=>588,chr(240)=>571,chr(241)=>495, |
||||
chr(242)=>524,chr(243)=>532,chr(244)=>769,chr(245)=>532,chr(246)=>612,chr(247)=>532,chr(248)=>823,chr(249)=>848,chr(250)=>636,chr(251)=>710,chr(252)=>530,chr(253)=>494,chr(254)=>757,chr(255)=>541); |
||||
$enc='win-1251'; |
||||
$diff='128 /afii10051 /afii10052 131 /afii10100 136 /Euro 138 /afii10058 140 /afii10059 /afii10061 /afii10060 /afii10145 /afii10099 152 /.notdef 154 /afii10106 156 /afii10107 /afii10109 /afii10108 /afii10193 161 /afii10062 /afii10110 /afii10057 165 /afii10050 168 /afii10023 170 /afii10053 175 /afii10056 178 /afii10055 /afii10103 /afii10098 184 /afii10071 /afii61352 /afii10101 188 /afii10105 /afii10054 /afii10102 /afii10104 /afii10017 /afii10018 /afii10019 /afii10020 /afii10021 /afii10022 /afii10024 /afii10025 /afii10026 /afii10027 /afii10028 /afii10029 /afii10030 /afii10031 /afii10032 /afii10033 /afii10034 /afii10035 /afii10036 /afii10037 /afii10038 /afii10039 /afii10040 /afii10041 /afii10042 /afii10043 /afii10044 /afii10045 /afii10046 /afii10047 /afii10048 /afii10049 /afii10065 /afii10066 /afii10067 /afii10068 /afii10069 /afii10070 /afii10072 /afii10073 /afii10074 /afii10075 /afii10076 /afii10077 /afii10078 /afii10079 /afii10080 /afii10081 /afii10082 /afii10083 /afii10084 /afii10085 /afii10086 /afii10087 /afii10088 /afii10089 /afii10090 /afii10091 /afii10092 /afii10093 /afii10094 /afii10095 /afii10096 /afii10097'; |
||||
$file='dejavusanscondensed-win-1251.z'; |
||||
$size1=6263; |
||||
$size2=25832; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-57 -236 1158 928]','ItalicAngle'=>0,'StemV'=>70,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>286,'!'=>360,'"'=>414,'#'=>754,'$'=>572,'%'=>855,'&'=>702,'\''=>247,'('=>351,')'=>351,'*'=>450,'+'=>754, |
||||
','=>286,'-'=>325,'.'=>286,'/'=>303,'0'=>572,'1'=>572,'2'=>572,'3'=>572,'4'=>572,'5'=>572,'6'=>572,'7'=>572,'8'=>572,'9'=>572,':'=>303,';'=>303,'<'=>754,'='=>754,'>'=>754,'?'=>478,'@'=>900,'A'=>615, |
||||
'B'=>617,'C'=>628,'D'=>693,'E'=>568,'F'=>518,'G'=>697,'H'=>677,'I'=>265,'J'=>265,'K'=>590,'L'=>501,'M'=>776,'N'=>673,'O'=>708,'P'=>542,'Q'=>708,'R'=>625,'S'=>571,'T'=>549,'U'=>659,'V'=>615,'W'=>890, |
||||
'X'=>616,'Y'=>549,'Z'=>616,'['=>351,'\\'=>303,']'=>351,'^'=>754,'_'=>450,'`'=>450,'a'=>551,'b'=>571,'c'=>495,'d'=>571,'e'=>554,'f'=>316,'g'=>571,'h'=>570,'i'=>250,'j'=>250,'k'=>521,'l'=>250,'m'=>876, |
||||
'n'=>570,'o'=>550,'p'=>571,'q'=>571,'r'=>370,'s'=>469,'t'=>353,'u'=>570,'v'=>532,'w'=>736,'x'=>532,'y'=>532,'z'=>472,'{'=>572,'|'=>303,'}'=>572,'~'=>754,chr(127)=>540,chr(128)=>572,chr(129)=>540,chr(130)=>286,chr(131)=>316, |
||||
chr(132)=>466,chr(133)=>900,chr(134)=>450,chr(135)=>450,chr(136)=>450,chr(137)=>1208,chr(138)=>571,chr(139)=>360,chr(140)=>962,chr(141)=>540,chr(142)=>616,chr(143)=>540,chr(144)=>540,chr(145)=>286,chr(146)=>286,chr(147)=>466,chr(148)=>466,chr(149)=>531,chr(150)=>450,chr(151)=>900,chr(152)=>450,chr(153)=>900, |
||||
chr(154)=>469,chr(155)=>360,chr(156)=>920,chr(157)=>540,chr(158)=>472,chr(159)=>549,chr(160)=>286,chr(161)=>360,chr(162)=>572,chr(163)=>572,chr(164)=>572,chr(165)=>572,chr(166)=>303,chr(167)=>450,chr(168)=>450,chr(169)=>900,chr(170)=>424,chr(171)=>550,chr(172)=>754,chr(173)=>325,chr(174)=>900,chr(175)=>450, |
||||
chr(176)=>450,chr(177)=>754,chr(178)=>360,chr(179)=>360,chr(180)=>450,chr(181)=>572,chr(182)=>572,chr(183)=>286,chr(184)=>450,chr(185)=>360,chr(186)=>424,chr(187)=>550,chr(188)=>872,chr(189)=>872,chr(190)=>872,chr(191)=>478,chr(192)=>615,chr(193)=>615,chr(194)=>615,chr(195)=>615,chr(196)=>615,chr(197)=>615, |
||||
chr(198)=>876,chr(199)=>628,chr(200)=>568,chr(201)=>568,chr(202)=>568,chr(203)=>568,chr(204)=>265,chr(205)=>265,chr(206)=>265,chr(207)=>265,chr(208)=>697,chr(209)=>673,chr(210)=>708,chr(211)=>708,chr(212)=>708,chr(213)=>708,chr(214)=>708,chr(215)=>754,chr(216)=>708,chr(217)=>659,chr(218)=>659,chr(219)=>659, |
||||
chr(220)=>659,chr(221)=>549,chr(222)=>544,chr(223)=>567,chr(224)=>551,chr(225)=>551,chr(226)=>551,chr(227)=>551,chr(228)=>551,chr(229)=>551,chr(230)=>883,chr(231)=>495,chr(232)=>554,chr(233)=>554,chr(234)=>554,chr(235)=>554,chr(236)=>250,chr(237)=>250,chr(238)=>250,chr(239)=>250,chr(240)=>550,chr(241)=>570, |
||||
chr(242)=>550,chr(243)=>550,chr(244)=>550,chr(245)=>550,chr(246)=>550,chr(247)=>754,chr(248)=>550,chr(249)=>570,chr(250)=>570,chr(251)=>570,chr(252)=>570,chr(253)=>532,chr(254)=>571,chr(255)=>532); |
||||
$enc='win-1252'; |
||||
$diff=''; |
||||
$file='dejavusanscondensed.z'; |
||||
$size1=6121; |
||||
$size2=28139; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed-Bold'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-51 -236 965 935]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>313,'!'=>410,'"'=>469,'#'=>754,'$'=>626,'%'=>901,'&'=>785,'\''=>275,'('=>411,')'=>411,'*'=>470,'+'=>754, |
||||
','=>342,'-'=>374,'.'=>342,'/'=>329,'0'=>626,'1'=>626,'2'=>626,'3'=>626,'4'=>626,'5'=>626,'6'=>626,'7'=>626,'8'=>626,'9'=>626,':'=>360,';'=>360,'<'=>754,'='=>754,'>'=>754,'?'=>522,'@'=>900,'A'=>696, |
||||
'B'=>686,'C'=>660,'D'=>747,'E'=>615,'F'=>615,'G'=>738,'H'=>753,'I'=>334,'J'=>334,'K'=>697,'L'=>573,'M'=>896,'N'=>753,'O'=>765,'P'=>659,'Q'=>765,'R'=>693,'S'=>648,'T'=>614,'U'=>730,'V'=>696,'W'=>993, |
||||
'X'=>694,'Y'=>651,'Z'=>652,'['=>411,'\\'=>329,']'=>411,'^'=>754,'_'=>450,'`'=>450,'a'=>607,'b'=>644,'c'=>533,'d'=>644,'e'=>610,'f'=>391,'g'=>644,'h'=>641,'i'=>308,'j'=>308,'k'=>598,'l'=>308,'m'=>938, |
||||
'n'=>641,'o'=>618,'p'=>644,'q'=>644,'r'=>444,'s'=>536,'t'=>430,'u'=>641,'v'=>586,'w'=>831,'x'=>580,'y'=>586,'z'=>523,'{'=>641,'|'=>329,'}'=>641,'~'=>754,chr(127)=>540,chr(128)=>540,chr(129)=>540,chr(130)=>540,chr(131)=>540, |
||||
chr(132)=>540,chr(133)=>540,chr(134)=>540,chr(135)=>540,chr(136)=>540,chr(137)=>540,chr(138)=>540,chr(139)=>540,chr(140)=>540,chr(141)=>540,chr(142)=>540,chr(143)=>540,chr(144)=>540,chr(145)=>540,chr(146)=>540,chr(147)=>540,chr(148)=>540,chr(149)=>540,chr(150)=>540,chr(151)=>540,chr(152)=>540,chr(153)=>540, |
||||
chr(154)=>540,chr(155)=>540,chr(156)=>540,chr(157)=>540,chr(158)=>540,chr(159)=>540,chr(160)=>313,chr(161)=>696,chr(162)=>450,chr(163)=>578,chr(164)=>572,chr(165)=>573,chr(166)=>648,chr(167)=>450,chr(168)=>450,chr(169)=>648,chr(170)=>648,chr(171)=>614,chr(172)=>652,chr(173)=>374,chr(174)=>652,chr(175)=>652, |
||||
chr(176)=>450,chr(177)=>607,chr(178)=>450,chr(179)=>334,chr(180)=>450,chr(181)=>431,chr(182)=>536,chr(183)=>450,chr(184)=>450,chr(185)=>536,chr(186)=>536,chr(187)=>430,chr(188)=>523,chr(189)=>450,chr(190)=>523,chr(191)=>523,chr(192)=>693,chr(193)=>696,chr(194)=>696,chr(195)=>696,chr(196)=>696,chr(197)=>573, |
||||
chr(198)=>660,chr(199)=>660,chr(200)=>660,chr(201)=>615,chr(202)=>615,chr(203)=>615,chr(204)=>615,chr(205)=>334,chr(206)=>334,chr(207)=>747,chr(208)=>754,chr(209)=>753,chr(210)=>753,chr(211)=>765,chr(212)=>765,chr(213)=>765,chr(214)=>765,chr(215)=>754,chr(216)=>693,chr(217)=>730,chr(218)=>730,chr(219)=>730, |
||||
chr(220)=>730,chr(221)=>651,chr(222)=>614,chr(223)=>647,chr(224)=>444,chr(225)=>607,chr(226)=>607,chr(227)=>607,chr(228)=>607,chr(229)=>308,chr(230)=>533,chr(231)=>533,chr(232)=>533,chr(233)=>610,chr(234)=>610,chr(235)=>610,chr(236)=>610,chr(237)=>308,chr(238)=>308,chr(239)=>644,chr(240)=>644,chr(241)=>641, |
||||
chr(242)=>641,chr(243)=>618,chr(244)=>618,chr(245)=>618,chr(246)=>618,chr(247)=>754,chr(248)=>444,chr(249)=>641,chr(250)=>641,chr(251)=>641,chr(252)=>641,chr(253)=>586,chr(254)=>430,chr(255)=>450); |
||||
$enc='iso-8859-2'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /Aogonek /breve /Lslash 165 /Lcaron /Sacute 169 /Scaron /Scedilla /Tcaron /Zacute 174 /Zcaron /Zdotaccent 177 /aogonek /ogonek /lslash 181 /lcaron /sacute /caron 185 /scaron /scedilla /tcaron /zacute /hungarumlaut /zcaron /zdotaccent /Racute 195 /Abreve 197 /Lacute /Cacute 200 /Ccaron 202 /Eogonek 204 /Ecaron 207 /Dcaron /Dcroat /Nacute /Ncaron 213 /Ohungarumlaut 216 /Rcaron /Uring 219 /Uhungarumlaut 222 /Tcommaaccent 224 /racute 227 /abreve 229 /lacute /cacute 232 /ccaron 234 /eogonek 236 /ecaron 239 /dcaron /dcroat /nacute /ncaron 245 /ohungarumlaut 248 /rcaron /uring 251 /uhungarumlaut 254 /tcommaaccent /dotaccent'; |
||||
$file='dejavusanscondensedb-iso-8859-2.z'; |
||||
$size1=6073; |
||||
$size2=25304; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed-Bold'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-51 -236 965 931]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>313,'!'=>410,'"'=>469,'#'=>754,'$'=>626,'%'=>901,'&'=>785,'\''=>275,'('=>411,')'=>411,'*'=>470,'+'=>754, |
||||
','=>342,'-'=>374,'.'=>342,'/'=>329,'0'=>626,'1'=>626,'2'=>626,'3'=>626,'4'=>626,'5'=>626,'6'=>626,'7'=>626,'8'=>626,'9'=>626,':'=>360,';'=>360,'<'=>754,'='=>754,'>'=>754,'?'=>522,'@'=>900,'A'=>696, |
||||
'B'=>686,'C'=>660,'D'=>747,'E'=>615,'F'=>615,'G'=>738,'H'=>753,'I'=>334,'J'=>334,'K'=>697,'L'=>573,'M'=>896,'N'=>753,'O'=>765,'P'=>659,'Q'=>765,'R'=>693,'S'=>648,'T'=>614,'U'=>730,'V'=>696,'W'=>993, |
||||
'X'=>694,'Y'=>651,'Z'=>652,'['=>411,'\\'=>329,']'=>411,'^'=>754,'_'=>450,'`'=>450,'a'=>607,'b'=>644,'c'=>533,'d'=>644,'e'=>610,'f'=>391,'g'=>644,'h'=>641,'i'=>308,'j'=>308,'k'=>598,'l'=>308,'m'=>938, |
||||
'n'=>641,'o'=>618,'p'=>644,'q'=>644,'r'=>444,'s'=>536,'t'=>430,'u'=>641,'v'=>586,'w'=>831,'x'=>580,'y'=>586,'z'=>523,'{'=>641,'|'=>329,'}'=>641,'~'=>754,chr(127)=>540,chr(128)=>540,chr(129)=>540,chr(130)=>540,chr(131)=>540, |
||||
chr(132)=>540,chr(133)=>540,chr(134)=>540,chr(135)=>540,chr(136)=>540,chr(137)=>540,chr(138)=>540,chr(139)=>540,chr(140)=>540,chr(141)=>540,chr(142)=>540,chr(143)=>540,chr(144)=>540,chr(145)=>540,chr(146)=>540,chr(147)=>540,chr(148)=>540,chr(149)=>540,chr(150)=>540,chr(151)=>540,chr(152)=>540,chr(153)=>540, |
||||
chr(154)=>540,chr(155)=>540,chr(156)=>540,chr(157)=>540,chr(158)=>540,chr(159)=>540,chr(160)=>313,chr(161)=>696,chr(162)=>598,chr(163)=>693,chr(164)=>572,chr(165)=>334,chr(166)=>573,chr(167)=>450,chr(168)=>450,chr(169)=>648,chr(170)=>615,chr(171)=>738,chr(172)=>614,chr(173)=>374,chr(174)=>652,chr(175)=>450, |
||||
chr(176)=>450,chr(177)=>607,chr(178)=>450,chr(179)=>444,chr(180)=>450,chr(181)=>308,chr(182)=>308,chr(183)=>450,chr(184)=>450,chr(185)=>536,chr(186)=>610,chr(187)=>644,chr(188)=>430,chr(189)=>753,chr(190)=>523,chr(191)=>641,chr(192)=>696,chr(193)=>696,chr(194)=>696,chr(195)=>696,chr(196)=>696,chr(197)=>696, |
||||
chr(198)=>976,chr(199)=>334,chr(200)=>660,chr(201)=>615,chr(202)=>615,chr(203)=>615,chr(204)=>615,chr(205)=>334,chr(206)=>334,chr(207)=>334,chr(208)=>754,chr(209)=>753,chr(210)=>765,chr(211)=>697,chr(212)=>765,chr(213)=>765,chr(214)=>765,chr(215)=>754,chr(216)=>765,chr(217)=>730,chr(218)=>730,chr(219)=>730, |
||||
chr(220)=>730,chr(221)=>730,chr(222)=>730,chr(223)=>647,chr(224)=>607,chr(225)=>607,chr(226)=>607,chr(227)=>607,chr(228)=>607,chr(229)=>607,chr(230)=>943,chr(231)=>308,chr(232)=>533,chr(233)=>610,chr(234)=>610,chr(235)=>610,chr(236)=>610,chr(237)=>308,chr(238)=>308,chr(239)=>308,chr(240)=>644,chr(241)=>641, |
||||
chr(242)=>618,chr(243)=>598,chr(244)=>618,chr(245)=>618,chr(246)=>618,chr(247)=>754,chr(248)=>618,chr(249)=>641,chr(250)=>641,chr(251)=>641,chr(252)=>641,chr(253)=>641,chr(254)=>641,chr(255)=>450); |
||||
$enc='iso-8859-4'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /Aogonek /kgreenlandic /Rcommaaccent 165 /Itilde /Lcommaaccent 169 /Scaron /Emacron /Gcommaaccent /Tbar 174 /Zcaron 177 /aogonek /ogonek /rcommaaccent 181 /itilde /lcommaaccent /caron 185 /scaron /emacron /gcommaaccent /tbar /Eng /zcaron /eng /Amacron 199 /Iogonek /Ccaron 202 /Eogonek 204 /Edotaccent 207 /Imacron /Dcroat /Ncommaaccent /Omacron /Kcommaaccent 217 /Uogonek 221 /Utilde /Umacron 224 /amacron 231 /iogonek /ccaron 234 /eogonek 236 /edotaccent 239 /imacron /dcroat /ncommaaccent /omacron /kcommaaccent 249 /uogonek 253 /utilde /umacron /dotaccent'; |
||||
$file='dejavusanscondensedb-iso-8859-4.z'; |
||||
$size1=6092; |
||||
$size2=25643; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed-Bold'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-51 -236 965 978]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>313,'!'=>410,'"'=>469,'#'=>754,'$'=>626,'%'=>901,'&'=>785,'\''=>275,'('=>411,')'=>411,'*'=>470,'+'=>754, |
||||
','=>342,'-'=>374,'.'=>342,'/'=>329,'0'=>626,'1'=>626,'2'=>626,'3'=>626,'4'=>626,'5'=>626,'6'=>626,'7'=>626,'8'=>626,'9'=>626,':'=>360,';'=>360,'<'=>754,'='=>754,'>'=>754,'?'=>522,'@'=>900,'A'=>696, |
||||
'B'=>686,'C'=>660,'D'=>747,'E'=>615,'F'=>615,'G'=>738,'H'=>753,'I'=>334,'J'=>334,'K'=>697,'L'=>573,'M'=>896,'N'=>753,'O'=>765,'P'=>659,'Q'=>765,'R'=>693,'S'=>648,'T'=>614,'U'=>730,'V'=>696,'W'=>993, |
||||
'X'=>694,'Y'=>651,'Z'=>652,'['=>411,'\\'=>329,']'=>411,'^'=>754,'_'=>450,'`'=>450,'a'=>607,'b'=>644,'c'=>533,'d'=>644,'e'=>610,'f'=>391,'g'=>644,'h'=>641,'i'=>308,'j'=>308,'k'=>598,'l'=>308,'m'=>938, |
||||
'n'=>641,'o'=>618,'p'=>644,'q'=>644,'r'=>444,'s'=>536,'t'=>430,'u'=>641,'v'=>586,'w'=>831,'x'=>580,'y'=>586,'z'=>523,'{'=>641,'|'=>329,'}'=>641,'~'=>754,chr(127)=>540,chr(128)=>540,chr(129)=>540,chr(130)=>540,chr(131)=>540, |
||||
chr(132)=>540,chr(133)=>540,chr(134)=>540,chr(135)=>540,chr(136)=>540,chr(137)=>540,chr(138)=>540,chr(139)=>540,chr(140)=>540,chr(141)=>540,chr(142)=>540,chr(143)=>540,chr(144)=>540,chr(145)=>540,chr(146)=>540,chr(147)=>540,chr(148)=>540,chr(149)=>540,chr(150)=>540,chr(151)=>540,chr(152)=>540,chr(153)=>540, |
||||
chr(154)=>540,chr(155)=>540,chr(156)=>540,chr(157)=>540,chr(158)=>540,chr(159)=>540,chr(160)=>313,chr(161)=>342,chr(162)=>342,chr(163)=>626,chr(164)=>540,chr(165)=>540,chr(166)=>329,chr(167)=>450,chr(168)=>450,chr(169)=>900,chr(170)=>540,chr(171)=>581,chr(172)=>754,chr(173)=>374,chr(174)=>540,chr(175)=>900, |
||||
chr(176)=>450,chr(177)=>754,chr(178)=>394,chr(179)=>394,chr(180)=>397,chr(181)=>450,chr(182)=>717,chr(183)=>342,chr(184)=>761,chr(185)=>908,chr(186)=>507,chr(187)=>581,chr(188)=>801,chr(189)=>932,chr(190)=>882,chr(191)=>804,chr(192)=>351,chr(193)=>696,chr(194)=>686,chr(195)=>573,chr(196)=>696,chr(197)=>615, |
||||
chr(198)=>652,chr(199)=>753,chr(200)=>765,chr(201)=>334,chr(202)=>697,chr(203)=>696,chr(204)=>896,chr(205)=>753,chr(206)=>568,chr(207)=>765,chr(208)=>753,chr(209)=>659,chr(210)=>540,chr(211)=>615,chr(212)=>614,chr(213)=>651,chr(214)=>765,chr(215)=>694,chr(216)=>765,chr(217)=>765,chr(218)=>334,chr(219)=>651, |
||||
chr(220)=>618,chr(221)=>501,chr(222)=>641,chr(223)=>351,chr(224)=>607,chr(225)=>618,chr(226)=>644,chr(227)=>613,chr(228)=>618,chr(229)=>501,chr(230)=>532,chr(231)=>641,chr(232)=>618,chr(233)=>351,chr(234)=>639,chr(235)=>569,chr(236)=>662,chr(237)=>613,chr(238)=>532,chr(239)=>618,chr(240)=>712,chr(241)=>644, |
||||
chr(242)=>533,chr(243)=>701,chr(244)=>574,chr(245)=>607,chr(246)=>704,chr(247)=>580,chr(248)=>714,chr(249)=>782,chr(250)=>351,chr(251)=>607,chr(252)=>618,chr(253)=>607,chr(254)=>782,chr(255)=>540); |
||||
$enc='iso-8859-7'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /quoteleft /quoteright 164 /.notdef /.notdef 170 /.notdef 174 /.notdef /afii00208 180 /tonos /dieresistonos /Alphatonos 184 /Epsilontonos /Etatonos /Iotatonos 188 /Omicrontonos 190 /Upsilontonos /Omegatonos /iotadieresistonos /Alpha /Beta /Gamma /Delta /Epsilon /Zeta /Eta /Theta /Iota /Kappa /Lambda /Mu /Nu /Xi /Omicron /Pi /Rho /.notdef /Sigma /Tau /Upsilon /Phi /Chi /Psi /Omega /Iotadieresis /Upsilondieresis /alphatonos /epsilontonos /etatonos /iotatonos /upsilondieresistonos /alpha /beta /gamma /delta /epsilon /zeta /eta /theta /iota /kappa /lambda /mu /nu /xi /omicron /pi /rho /sigma1 /sigma /tau /upsilon /phi /chi /psi /omega /iotadieresis /upsilondieresis /omicrontonos /upsilontonos /omegatonos /.notdef'; |
||||
$file='dejavusanscondensedb-iso-8859-7.z'; |
||||
$size1=6048; |
||||
$size2=21791; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed-Bold'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-51 -236 965 931]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>313,'!'=>410,'"'=>469,'#'=>754,'$'=>626,'%'=>901,'&'=>785,'\''=>275,'('=>411,')'=>411,'*'=>470,'+'=>754, |
||||
','=>342,'-'=>374,'.'=>342,'/'=>329,'0'=>626,'1'=>626,'2'=>626,'3'=>626,'4'=>626,'5'=>626,'6'=>626,'7'=>626,'8'=>626,'9'=>626,':'=>360,';'=>360,'<'=>754,'='=>754,'>'=>754,'?'=>522,'@'=>900,'A'=>696, |
||||
'B'=>686,'C'=>660,'D'=>747,'E'=>615,'F'=>615,'G'=>738,'H'=>753,'I'=>334,'J'=>334,'K'=>697,'L'=>573,'M'=>896,'N'=>753,'O'=>765,'P'=>659,'Q'=>765,'R'=>693,'S'=>648,'T'=>614,'U'=>730,'V'=>696,'W'=>993, |
||||
'X'=>694,'Y'=>651,'Z'=>652,'['=>411,'\\'=>329,']'=>411,'^'=>754,'_'=>450,'`'=>450,'a'=>607,'b'=>644,'c'=>533,'d'=>644,'e'=>610,'f'=>391,'g'=>644,'h'=>641,'i'=>308,'j'=>308,'k'=>598,'l'=>308,'m'=>938, |
||||
'n'=>641,'o'=>618,'p'=>644,'q'=>644,'r'=>444,'s'=>536,'t'=>430,'u'=>641,'v'=>586,'w'=>831,'x'=>580,'y'=>586,'z'=>523,'{'=>641,'|'=>329,'}'=>641,'~'=>754,chr(127)=>540,chr(128)=>540,chr(129)=>540,chr(130)=>540,chr(131)=>540, |
||||
chr(132)=>540,chr(133)=>540,chr(134)=>540,chr(135)=>540,chr(136)=>540,chr(137)=>540,chr(138)=>540,chr(139)=>540,chr(140)=>540,chr(141)=>540,chr(142)=>540,chr(143)=>540,chr(144)=>540,chr(145)=>540,chr(146)=>540,chr(147)=>540,chr(148)=>540,chr(149)=>540,chr(150)=>540,chr(151)=>540,chr(152)=>540,chr(153)=>540, |
||||
chr(154)=>540,chr(155)=>540,chr(156)=>540,chr(157)=>540,chr(158)=>540,chr(159)=>540,chr(160)=>313,chr(161)=>410,chr(162)=>626,chr(163)=>626,chr(164)=>572,chr(165)=>626,chr(166)=>329,chr(167)=>450,chr(168)=>450,chr(169)=>900,chr(170)=>507,chr(171)=>581,chr(172)=>754,chr(173)=>374,chr(174)=>900,chr(175)=>450, |
||||
chr(176)=>450,chr(177)=>754,chr(178)=>394,chr(179)=>394,chr(180)=>450,chr(181)=>662,chr(182)=>572,chr(183)=>342,chr(184)=>450,chr(185)=>394,chr(186)=>507,chr(187)=>581,chr(188)=>932,chr(189)=>932,chr(190)=>932,chr(191)=>522,chr(192)=>696,chr(193)=>696,chr(194)=>696,chr(195)=>696,chr(196)=>696,chr(197)=>696, |
||||
chr(198)=>976,chr(199)=>660,chr(200)=>615,chr(201)=>615,chr(202)=>615,chr(203)=>615,chr(204)=>334,chr(205)=>334,chr(206)=>334,chr(207)=>334,chr(208)=>738,chr(209)=>753,chr(210)=>765,chr(211)=>765,chr(212)=>765,chr(213)=>765,chr(214)=>765,chr(215)=>754,chr(216)=>765,chr(217)=>730,chr(218)=>730,chr(219)=>730, |
||||
chr(220)=>730,chr(221)=>334,chr(222)=>648,chr(223)=>647,chr(224)=>607,chr(225)=>607,chr(226)=>607,chr(227)=>607,chr(228)=>607,chr(229)=>607,chr(230)=>943,chr(231)=>533,chr(232)=>610,chr(233)=>610,chr(234)=>610,chr(235)=>610,chr(236)=>308,chr(237)=>308,chr(238)=>308,chr(239)=>308,chr(240)=>644,chr(241)=>641, |
||||
chr(242)=>618,chr(243)=>618,chr(244)=>618,chr(245)=>618,chr(246)=>618,chr(247)=>754,chr(248)=>618,chr(249)=>641,chr(250)=>641,chr(251)=>641,chr(252)=>641,chr(253)=>308,chr(254)=>536,chr(255)=>586); |
||||
$enc='iso-8859-9'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 208 /Gbreve 221 /Idotaccent /Scedilla 240 /gbreve 253 /dotlessi /scedilla'; |
||||
$file='dejavusanscondensedb-iso-8859-9.z'; |
||||
$size1=6127; |
||||
$size2=25808; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed-Bold'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-51 -236 1275 928]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>313,'!'=>410,'"'=>469,'#'=>754,'$'=>626,'%'=>901,'&'=>785,'\''=>275,'('=>411,')'=>411,'*'=>470,'+'=>754, |
||||
','=>342,'-'=>374,'.'=>342,'/'=>329,'0'=>626,'1'=>626,'2'=>626,'3'=>626,'4'=>626,'5'=>626,'6'=>626,'7'=>626,'8'=>626,'9'=>626,':'=>360,';'=>360,'<'=>754,'='=>754,'>'=>754,'?'=>522,'@'=>900,'A'=>696, |
||||
'B'=>686,'C'=>660,'D'=>747,'E'=>615,'F'=>615,'G'=>738,'H'=>753,'I'=>334,'J'=>334,'K'=>697,'L'=>573,'M'=>896,'N'=>753,'O'=>765,'P'=>659,'Q'=>765,'R'=>693,'S'=>648,'T'=>614,'U'=>730,'V'=>696,'W'=>993, |
||||
'X'=>694,'Y'=>651,'Z'=>652,'['=>411,'\\'=>329,']'=>411,'^'=>754,'_'=>450,'`'=>450,'a'=>607,'b'=>644,'c'=>533,'d'=>644,'e'=>610,'f'=>391,'g'=>644,'h'=>641,'i'=>308,'j'=>308,'k'=>598,'l'=>308,'m'=>938, |
||||
'n'=>641,'o'=>618,'p'=>644,'q'=>644,'r'=>444,'s'=>536,'t'=>430,'u'=>641,'v'=>586,'w'=>831,'x'=>580,'y'=>586,'z'=>523,'{'=>641,'|'=>329,'}'=>641,'~'=>754,chr(127)=>540,chr(128)=>791,chr(129)=>573,chr(130)=>342,chr(131)=>470, |
||||
chr(132)=>591,chr(133)=>900,chr(134)=>450,chr(135)=>450,chr(136)=>626,chr(137)=>1296,chr(138)=>1039,chr(139)=>371,chr(140)=>1017,chr(141)=>735,chr(142)=>791,chr(143)=>753,chr(144)=>642,chr(145)=>342,chr(146)=>342,chr(147)=>591,chr(148)=>591,chr(149)=>575,chr(150)=>450,chr(151)=>900,chr(152)=>540,chr(153)=>900, |
||||
chr(154)=>892,chr(155)=>371,chr(156)=>860,chr(157)=>611,chr(158)=>661,chr(159)=>622,chr(160)=>313,chr(161)=>694,chr(162)=>586,chr(163)=>334,chr(164)=>572,chr(165)=>573,chr(166)=>329,chr(167)=>450,chr(168)=>615,chr(169)=>900,chr(170)=>660,chr(171)=>581,chr(172)=>754,chr(173)=>374,chr(174)=>900,chr(175)=>334, |
||||
chr(176)=>450,chr(177)=>754,chr(178)=>334,chr(179)=>308,chr(180)=>470,chr(181)=>662,chr(182)=>572,chr(183)=>342,chr(184)=>610,chr(185)=>1083,chr(186)=>533,chr(187)=>581,chr(188)=>308,chr(189)=>648,chr(190)=>536,chr(191)=>308,chr(192)=>696,chr(193)=>686,chr(194)=>686,chr(195)=>573,chr(196)=>801,chr(197)=>615, |
||||
chr(198)=>1102,chr(199)=>639,chr(200)=>753,chr(201)=>753,chr(202)=>735,chr(203)=>747,chr(204)=>896,chr(205)=>753,chr(206)=>765,chr(207)=>753,chr(208)=>659,chr(209)=>660,chr(210)=>614,chr(211)=>694,chr(212)=>892,chr(213)=>694,chr(214)=>835,chr(215)=>727,chr(216)=>1112,chr(217)=>1193,chr(218)=>845,chr(219)=>932, |
||||
chr(220)=>686,chr(221)=>660,chr(222)=>1056,chr(223)=>693,chr(224)=>607,chr(225)=>628,chr(226)=>569,chr(227)=>470,chr(228)=>727,chr(229)=>610,chr(230)=>896,chr(231)=>523,chr(232)=>630,chr(233)=>630,chr(234)=>611,chr(235)=>659,chr(236)=>735,chr(237)=>622,chr(238)=>618,chr(239)=>622,chr(240)=>644,chr(241)=>533, |
||||
chr(242)=>521,chr(243)=>586,chr(244)=>893,chr(245)=>580,chr(246)=>667,chr(247)=>618,chr(248)=>956,chr(249)=>995,chr(250)=>676,chr(251)=>813,chr(252)=>569,chr(253)=>533,chr(254)=>875,chr(255)=>578); |
||||
$enc='win-1251'; |
||||
$diff='128 /afii10051 /afii10052 131 /afii10100 136 /Euro 138 /afii10058 140 /afii10059 /afii10061 /afii10060 /afii10145 /afii10099 152 /.notdef 154 /afii10106 156 /afii10107 /afii10109 /afii10108 /afii10193 161 /afii10062 /afii10110 /afii10057 165 /afii10050 168 /afii10023 170 /afii10053 175 /afii10056 178 /afii10055 /afii10103 /afii10098 184 /afii10071 /afii61352 /afii10101 188 /afii10105 /afii10054 /afii10102 /afii10104 /afii10017 /afii10018 /afii10019 /afii10020 /afii10021 /afii10022 /afii10024 /afii10025 /afii10026 /afii10027 /afii10028 /afii10029 /afii10030 /afii10031 /afii10032 /afii10033 /afii10034 /afii10035 /afii10036 /afii10037 /afii10038 /afii10039 /afii10040 /afii10041 /afii10042 /afii10043 /afii10044 /afii10045 /afii10046 /afii10047 /afii10048 /afii10049 /afii10065 /afii10066 /afii10067 /afii10068 /afii10069 /afii10070 /afii10072 /afii10073 /afii10074 /afii10075 /afii10076 /afii10077 /afii10078 /afii10079 /afii10080 /afii10081 /afii10082 /afii10083 /afii10084 /afii10085 /afii10086 /afii10087 /afii10088 /afii10089 /afii10090 /afii10091 /afii10092 /afii10093 /afii10094 /afii10095 /afii10096 /afii10097'; |
||||
$file='dejavusanscondensedb-win-1251.z'; |
||||
$size1=6283; |
||||
$size2=26745; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed-Bold'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>32,'FontBBox'=>'[-51 -236 1275 931]','ItalicAngle'=>0,'StemV'=>120,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>313,'!'=>410,'"'=>469,'#'=>754,'$'=>626,'%'=>901,'&'=>785,'\''=>275,'('=>411,')'=>411,'*'=>470,'+'=>754, |
||||
','=>342,'-'=>374,'.'=>342,'/'=>329,'0'=>626,'1'=>626,'2'=>626,'3'=>626,'4'=>626,'5'=>626,'6'=>626,'7'=>626,'8'=>626,'9'=>626,':'=>360,';'=>360,'<'=>754,'='=>754,'>'=>754,'?'=>522,'@'=>900,'A'=>696, |
||||
'B'=>686,'C'=>660,'D'=>747,'E'=>615,'F'=>615,'G'=>738,'H'=>753,'I'=>334,'J'=>334,'K'=>697,'L'=>573,'M'=>896,'N'=>753,'O'=>765,'P'=>659,'Q'=>765,'R'=>693,'S'=>648,'T'=>614,'U'=>730,'V'=>696,'W'=>993, |
||||
'X'=>694,'Y'=>651,'Z'=>652,'['=>411,'\\'=>329,']'=>411,'^'=>754,'_'=>450,'`'=>450,'a'=>607,'b'=>644,'c'=>533,'d'=>644,'e'=>610,'f'=>391,'g'=>644,'h'=>641,'i'=>308,'j'=>308,'k'=>598,'l'=>308,'m'=>938, |
||||
'n'=>641,'o'=>618,'p'=>644,'q'=>644,'r'=>444,'s'=>536,'t'=>430,'u'=>641,'v'=>586,'w'=>831,'x'=>580,'y'=>586,'z'=>523,'{'=>641,'|'=>329,'}'=>641,'~'=>754,chr(127)=>540,chr(128)=>626,chr(129)=>540,chr(130)=>342,chr(131)=>391, |
||||
chr(132)=>591,chr(133)=>900,chr(134)=>450,chr(135)=>450,chr(136)=>450,chr(137)=>1296,chr(138)=>648,chr(139)=>371,chr(140)=>1050,chr(141)=>540,chr(142)=>652,chr(143)=>540,chr(144)=>540,chr(145)=>342,chr(146)=>342,chr(147)=>591,chr(148)=>591,chr(149)=>575,chr(150)=>450,chr(151)=>900,chr(152)=>450,chr(153)=>900, |
||||
chr(154)=>536,chr(155)=>371,chr(156)=>984,chr(157)=>540,chr(158)=>523,chr(159)=>651,chr(160)=>313,chr(161)=>410,chr(162)=>626,chr(163)=>626,chr(164)=>572,chr(165)=>626,chr(166)=>329,chr(167)=>450,chr(168)=>450,chr(169)=>900,chr(170)=>507,chr(171)=>581,chr(172)=>754,chr(173)=>374,chr(174)=>900,chr(175)=>450, |
||||
chr(176)=>450,chr(177)=>754,chr(178)=>394,chr(179)=>394,chr(180)=>450,chr(181)=>662,chr(182)=>572,chr(183)=>342,chr(184)=>450,chr(185)=>394,chr(186)=>507,chr(187)=>581,chr(188)=>932,chr(189)=>932,chr(190)=>932,chr(191)=>522,chr(192)=>696,chr(193)=>696,chr(194)=>696,chr(195)=>696,chr(196)=>696,chr(197)=>696, |
||||
chr(198)=>976,chr(199)=>660,chr(200)=>615,chr(201)=>615,chr(202)=>615,chr(203)=>615,chr(204)=>334,chr(205)=>334,chr(206)=>334,chr(207)=>334,chr(208)=>754,chr(209)=>753,chr(210)=>765,chr(211)=>765,chr(212)=>765,chr(213)=>765,chr(214)=>765,chr(215)=>754,chr(216)=>765,chr(217)=>730,chr(218)=>730,chr(219)=>730, |
||||
chr(220)=>730,chr(221)=>651,chr(222)=>664,chr(223)=>647,chr(224)=>607,chr(225)=>607,chr(226)=>607,chr(227)=>607,chr(228)=>607,chr(229)=>607,chr(230)=>943,chr(231)=>533,chr(232)=>610,chr(233)=>610,chr(234)=>610,chr(235)=>610,chr(236)=>308,chr(237)=>308,chr(238)=>308,chr(239)=>308,chr(240)=>618,chr(241)=>641, |
||||
chr(242)=>618,chr(243)=>618,chr(244)=>618,chr(245)=>618,chr(246)=>618,chr(247)=>754,chr(248)=>618,chr(249)=>641,chr(250)=>641,chr(251)=>641,chr(252)=>641,chr(253)=>586,chr(254)=>644,chr(255)=>586); |
||||
$enc='win-1252'; |
||||
$diff=''; |
||||
$file='dejavusanscondensedb.z'; |
||||
$size1=6141; |
||||
$size2=28982; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed-BoldOblique'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>96,'FontBBox'=>'[-149 -236 1029 936]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>313,'!'=>410,'"'=>469,'#'=>626,'$'=>626,'%'=>901,'&'=>785,'\''=>275,'('=>411,')'=>411,'*'=>470,'+'=>754, |
||||
','=>342,'-'=>374,'.'=>342,'/'=>329,'0'=>626,'1'=>626,'2'=>626,'3'=>626,'4'=>626,'5'=>626,'6'=>626,'7'=>626,'8'=>626,'9'=>626,':'=>360,';'=>360,'<'=>754,'='=>754,'>'=>754,'?'=>522,'@'=>900,'A'=>696, |
||||
'B'=>686,'C'=>660,'D'=>747,'E'=>615,'F'=>615,'G'=>738,'H'=>753,'I'=>334,'J'=>334,'K'=>697,'L'=>573,'M'=>896,'N'=>753,'O'=>765,'P'=>659,'Q'=>765,'R'=>693,'S'=>648,'T'=>614,'U'=>730,'V'=>696,'W'=>993, |
||||
'X'=>694,'Y'=>651,'Z'=>652,'['=>411,'\\'=>329,']'=>411,'^'=>754,'_'=>450,'`'=>450,'a'=>607,'b'=>644,'c'=>533,'d'=>644,'e'=>610,'f'=>391,'g'=>644,'h'=>641,'i'=>308,'j'=>308,'k'=>598,'l'=>308,'m'=>938, |
||||
'n'=>641,'o'=>618,'p'=>644,'q'=>644,'r'=>444,'s'=>536,'t'=>430,'u'=>641,'v'=>586,'w'=>831,'x'=>580,'y'=>586,'z'=>523,'{'=>641,'|'=>329,'}'=>641,'~'=>754,chr(127)=>540,chr(128)=>540,chr(129)=>540,chr(130)=>540,chr(131)=>540, |
||||
chr(132)=>540,chr(133)=>540,chr(134)=>540,chr(135)=>540,chr(136)=>540,chr(137)=>540,chr(138)=>540,chr(139)=>540,chr(140)=>540,chr(141)=>540,chr(142)=>540,chr(143)=>540,chr(144)=>540,chr(145)=>540,chr(146)=>540,chr(147)=>540,chr(148)=>540,chr(149)=>540,chr(150)=>540,chr(151)=>540,chr(152)=>540,chr(153)=>540, |
||||
chr(154)=>540,chr(155)=>540,chr(156)=>540,chr(157)=>540,chr(158)=>540,chr(159)=>540,chr(160)=>313,chr(161)=>696,chr(162)=>450,chr(163)=>594,chr(164)=>572,chr(165)=>573,chr(166)=>648,chr(167)=>450,chr(168)=>450,chr(169)=>648,chr(170)=>648,chr(171)=>614,chr(172)=>652,chr(173)=>374,chr(174)=>652,chr(175)=>652, |
||||
chr(176)=>450,chr(177)=>607,chr(178)=>450,chr(179)=>337,chr(180)=>450,chr(181)=>308,chr(182)=>536,chr(183)=>450,chr(184)=>450,chr(185)=>536,chr(186)=>536,chr(187)=>430,chr(188)=>523,chr(189)=>450,chr(190)=>523,chr(191)=>523,chr(192)=>693,chr(193)=>696,chr(194)=>696,chr(195)=>696,chr(196)=>696,chr(197)=>573, |
||||
chr(198)=>660,chr(199)=>660,chr(200)=>660,chr(201)=>615,chr(202)=>615,chr(203)=>615,chr(204)=>615,chr(205)=>334,chr(206)=>334,chr(207)=>747,chr(208)=>760,chr(209)=>753,chr(210)=>753,chr(211)=>765,chr(212)=>765,chr(213)=>765,chr(214)=>765,chr(215)=>754,chr(216)=>693,chr(217)=>730,chr(218)=>730,chr(219)=>730, |
||||
chr(220)=>730,chr(221)=>651,chr(222)=>614,chr(223)=>647,chr(224)=>444,chr(225)=>607,chr(226)=>607,chr(227)=>607,chr(228)=>607,chr(229)=>308,chr(230)=>533,chr(231)=>533,chr(232)=>533,chr(233)=>610,chr(234)=>610,chr(235)=>610,chr(236)=>610,chr(237)=>308,chr(238)=>308,chr(239)=>644,chr(240)=>644,chr(241)=>641, |
||||
chr(242)=>641,chr(243)=>618,chr(244)=>618,chr(245)=>618,chr(246)=>618,chr(247)=>754,chr(248)=>444,chr(249)=>641,chr(250)=>641,chr(251)=>641,chr(252)=>641,chr(253)=>586,chr(254)=>430,chr(255)=>450); |
||||
$enc='iso-8859-2'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /Aogonek /breve /Lslash 165 /Lcaron /Sacute 169 /Scaron /Scedilla /Tcaron /Zacute 174 /Zcaron /Zdotaccent 177 /aogonek /ogonek /lslash 181 /lcaron /sacute /caron 185 /scaron /scedilla /tcaron /zacute /hungarumlaut /zcaron /zdotaccent /Racute 195 /Abreve 197 /Lacute /Cacute 200 /Ccaron 202 /Eogonek 204 /Ecaron 207 /Dcaron /Dcroat /Nacute /Ncaron 213 /Ohungarumlaut 216 /Rcaron /Uring 219 /Uhungarumlaut 222 /Tcommaaccent 224 /racute 227 /abreve 229 /lacute /cacute 232 /ccaron 234 /eogonek 236 /ecaron 239 /dcaron /dcroat /nacute /ncaron 245 /ohungarumlaut 248 /rcaron /uring 251 /uhungarumlaut 254 /tcommaaccent /dotaccent'; |
||||
$file='dejavusanscondensedbi-iso-8859-2.z'; |
||||
$size1=6114; |
||||
$size2=26002; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed-BoldOblique'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>96,'FontBBox'=>'[-149 -236 1029 928]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>313,'!'=>410,'"'=>469,'#'=>626,'$'=>626,'%'=>901,'&'=>785,'\''=>275,'('=>411,')'=>411,'*'=>470,'+'=>754, |
||||
','=>342,'-'=>374,'.'=>342,'/'=>329,'0'=>626,'1'=>626,'2'=>626,'3'=>626,'4'=>626,'5'=>626,'6'=>626,'7'=>626,'8'=>626,'9'=>626,':'=>360,';'=>360,'<'=>754,'='=>754,'>'=>754,'?'=>522,'@'=>900,'A'=>696, |
||||
'B'=>686,'C'=>660,'D'=>747,'E'=>615,'F'=>615,'G'=>738,'H'=>753,'I'=>334,'J'=>334,'K'=>697,'L'=>573,'M'=>896,'N'=>753,'O'=>765,'P'=>659,'Q'=>765,'R'=>693,'S'=>648,'T'=>614,'U'=>730,'V'=>696,'W'=>993, |
||||
'X'=>694,'Y'=>651,'Z'=>652,'['=>411,'\\'=>329,']'=>411,'^'=>754,'_'=>450,'`'=>450,'a'=>607,'b'=>644,'c'=>533,'d'=>644,'e'=>610,'f'=>391,'g'=>644,'h'=>641,'i'=>308,'j'=>308,'k'=>598,'l'=>308,'m'=>938, |
||||
'n'=>641,'o'=>618,'p'=>644,'q'=>644,'r'=>444,'s'=>536,'t'=>430,'u'=>641,'v'=>586,'w'=>831,'x'=>580,'y'=>586,'z'=>523,'{'=>641,'|'=>329,'}'=>641,'~'=>754,chr(127)=>540,chr(128)=>540,chr(129)=>540,chr(130)=>540,chr(131)=>540, |
||||
chr(132)=>540,chr(133)=>540,chr(134)=>540,chr(135)=>540,chr(136)=>540,chr(137)=>540,chr(138)=>540,chr(139)=>540,chr(140)=>540,chr(141)=>540,chr(142)=>540,chr(143)=>540,chr(144)=>540,chr(145)=>540,chr(146)=>540,chr(147)=>540,chr(148)=>540,chr(149)=>540,chr(150)=>540,chr(151)=>540,chr(152)=>540,chr(153)=>540, |
||||
chr(154)=>540,chr(155)=>540,chr(156)=>540,chr(157)=>540,chr(158)=>540,chr(159)=>540,chr(160)=>313,chr(161)=>696,chr(162)=>598,chr(163)=>693,chr(164)=>572,chr(165)=>334,chr(166)=>573,chr(167)=>450,chr(168)=>450,chr(169)=>648,chr(170)=>615,chr(171)=>738,chr(172)=>614,chr(173)=>374,chr(174)=>652,chr(175)=>450, |
||||
chr(176)=>450,chr(177)=>607,chr(178)=>450,chr(179)=>444,chr(180)=>450,chr(181)=>308,chr(182)=>308,chr(183)=>450,chr(184)=>450,chr(185)=>536,chr(186)=>610,chr(187)=>644,chr(188)=>430,chr(189)=>753,chr(190)=>523,chr(191)=>641,chr(192)=>696,chr(193)=>696,chr(194)=>696,chr(195)=>696,chr(196)=>696,chr(197)=>696, |
||||
chr(198)=>976,chr(199)=>334,chr(200)=>660,chr(201)=>615,chr(202)=>615,chr(203)=>615,chr(204)=>615,chr(205)=>334,chr(206)=>334,chr(207)=>334,chr(208)=>760,chr(209)=>753,chr(210)=>765,chr(211)=>697,chr(212)=>765,chr(213)=>765,chr(214)=>765,chr(215)=>754,chr(216)=>765,chr(217)=>730,chr(218)=>730,chr(219)=>730, |
||||
chr(220)=>730,chr(221)=>730,chr(222)=>730,chr(223)=>647,chr(224)=>607,chr(225)=>607,chr(226)=>607,chr(227)=>607,chr(228)=>607,chr(229)=>607,chr(230)=>943,chr(231)=>308,chr(232)=>533,chr(233)=>610,chr(234)=>610,chr(235)=>610,chr(236)=>610,chr(237)=>308,chr(238)=>308,chr(239)=>308,chr(240)=>644,chr(241)=>641, |
||||
chr(242)=>618,chr(243)=>598,chr(244)=>618,chr(245)=>618,chr(246)=>618,chr(247)=>754,chr(248)=>618,chr(249)=>641,chr(250)=>641,chr(251)=>641,chr(252)=>641,chr(253)=>641,chr(254)=>641,chr(255)=>450); |
||||
$enc='iso-8859-4'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /Aogonek /kgreenlandic /Rcommaaccent 165 /Itilde /Lcommaaccent 169 /Scaron /Emacron /Gcommaaccent /Tbar 174 /Zcaron 177 /aogonek /ogonek /rcommaaccent 181 /itilde /lcommaaccent /caron 185 /scaron /emacron /gcommaaccent /tbar /Eng /zcaron /eng /Amacron 199 /Iogonek /Ccaron 202 /Eogonek 204 /Edotaccent 207 /Imacron /Dcroat /Ncommaaccent /Omacron /Kcommaaccent 217 /Uogonek 221 /Utilde /Umacron 224 /amacron 231 /iogonek /ccaron 234 /eogonek 236 /edotaccent 239 /imacron /dcroat /ncommaaccent /omacron /kcommaaccent 249 /uogonek 253 /utilde /umacron /dotaccent'; |
||||
$file='dejavusanscondensedbi-iso-8859-4.z'; |
||||
$size1=6133; |
||||
$size2=26274; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed-BoldOblique'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>96,'FontBBox'=>'[-149 -236 1029 978]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>313,'!'=>410,'"'=>469,'#'=>626,'$'=>626,'%'=>901,'&'=>785,'\''=>275,'('=>411,')'=>411,'*'=>470,'+'=>754, |
||||
','=>342,'-'=>374,'.'=>342,'/'=>329,'0'=>626,'1'=>626,'2'=>626,'3'=>626,'4'=>626,'5'=>626,'6'=>626,'7'=>626,'8'=>626,'9'=>626,':'=>360,';'=>360,'<'=>754,'='=>754,'>'=>754,'?'=>522,'@'=>900,'A'=>696, |
||||
'B'=>686,'C'=>660,'D'=>747,'E'=>615,'F'=>615,'G'=>738,'H'=>753,'I'=>334,'J'=>334,'K'=>697,'L'=>573,'M'=>896,'N'=>753,'O'=>765,'P'=>659,'Q'=>765,'R'=>693,'S'=>648,'T'=>614,'U'=>730,'V'=>696,'W'=>993, |
||||
'X'=>694,'Y'=>651,'Z'=>652,'['=>411,'\\'=>329,']'=>411,'^'=>754,'_'=>450,'`'=>450,'a'=>607,'b'=>644,'c'=>533,'d'=>644,'e'=>610,'f'=>391,'g'=>644,'h'=>641,'i'=>308,'j'=>308,'k'=>598,'l'=>308,'m'=>938, |
||||
'n'=>641,'o'=>618,'p'=>644,'q'=>644,'r'=>444,'s'=>536,'t'=>430,'u'=>641,'v'=>586,'w'=>831,'x'=>580,'y'=>586,'z'=>523,'{'=>641,'|'=>329,'}'=>641,'~'=>754,chr(127)=>540,chr(128)=>540,chr(129)=>540,chr(130)=>540,chr(131)=>540, |
||||
chr(132)=>540,chr(133)=>540,chr(134)=>540,chr(135)=>540,chr(136)=>540,chr(137)=>540,chr(138)=>540,chr(139)=>540,chr(140)=>540,chr(141)=>540,chr(142)=>540,chr(143)=>540,chr(144)=>540,chr(145)=>540,chr(146)=>540,chr(147)=>540,chr(148)=>540,chr(149)=>540,chr(150)=>540,chr(151)=>540,chr(152)=>540,chr(153)=>540, |
||||
chr(154)=>540,chr(155)=>540,chr(156)=>540,chr(157)=>540,chr(158)=>540,chr(159)=>540,chr(160)=>313,chr(161)=>342,chr(162)=>342,chr(163)=>626,chr(164)=>540,chr(165)=>540,chr(166)=>329,chr(167)=>450,chr(168)=>450,chr(169)=>900,chr(170)=>540,chr(171)=>584,chr(172)=>754,chr(173)=>374,chr(174)=>540,chr(175)=>900, |
||||
chr(176)=>450,chr(177)=>754,chr(178)=>394,chr(179)=>394,chr(180)=>397,chr(181)=>450,chr(182)=>717,chr(183)=>342,chr(184)=>761,chr(185)=>908,chr(186)=>507,chr(187)=>584,chr(188)=>801,chr(189)=>932,chr(190)=>882,chr(191)=>804,chr(192)=>351,chr(193)=>696,chr(194)=>686,chr(195)=>573,chr(196)=>696,chr(197)=>615, |
||||
chr(198)=>652,chr(199)=>753,chr(200)=>765,chr(201)=>334,chr(202)=>697,chr(203)=>696,chr(204)=>896,chr(205)=>753,chr(206)=>568,chr(207)=>765,chr(208)=>753,chr(209)=>659,chr(210)=>540,chr(211)=>615,chr(212)=>614,chr(213)=>651,chr(214)=>765,chr(215)=>694,chr(216)=>765,chr(217)=>765,chr(218)=>334,chr(219)=>651, |
||||
chr(220)=>618,chr(221)=>501,chr(222)=>641,chr(223)=>351,chr(224)=>607,chr(225)=>618,chr(226)=>644,chr(227)=>613,chr(228)=>618,chr(229)=>501,chr(230)=>532,chr(231)=>641,chr(232)=>618,chr(233)=>351,chr(234)=>639,chr(235)=>569,chr(236)=>662,chr(237)=>613,chr(238)=>532,chr(239)=>618,chr(240)=>712,chr(241)=>644, |
||||
chr(242)=>533,chr(243)=>701,chr(244)=>574,chr(245)=>607,chr(246)=>704,chr(247)=>580,chr(248)=>714,chr(249)=>782,chr(250)=>351,chr(251)=>607,chr(252)=>618,chr(253)=>607,chr(254)=>782,chr(255)=>540); |
||||
$enc='iso-8859-7'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /quoteleft /quoteright 164 /.notdef /.notdef 170 /.notdef 174 /.notdef /afii00208 180 /tonos /dieresistonos /Alphatonos 184 /Epsilontonos /Etatonos /Iotatonos 188 /Omicrontonos 190 /Upsilontonos /Omegatonos /iotadieresistonos /Alpha /Beta /Gamma /Delta /Epsilon /Zeta /Eta /Theta /Iota /Kappa /Lambda /Mu /Nu /Xi /Omicron /Pi /Rho /.notdef /Sigma /Tau /Upsilon /Phi /Chi /Psi /Omega /Iotadieresis /Upsilondieresis /alphatonos /epsilontonos /etatonos /iotatonos /upsilondieresistonos /alpha /beta /gamma /delta /epsilon /zeta /eta /theta /iota /kappa /lambda /mu /nu /xi /omicron /pi /rho /sigma1 /sigma /tau /upsilon /phi /chi /psi /omega /iotadieresis /upsilondieresis /omicrontonos /upsilontonos /omegatonos /.notdef'; |
||||
$file='dejavusanscondensedbi-iso-8859-7.z'; |
||||
$size1=6089; |
||||
$size2=22446; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed-BoldOblique'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>96,'FontBBox'=>'[-149 -236 1029 928]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>313,'!'=>410,'"'=>469,'#'=>626,'$'=>626,'%'=>901,'&'=>785,'\''=>275,'('=>411,')'=>411,'*'=>470,'+'=>754, |
||||
','=>342,'-'=>374,'.'=>342,'/'=>329,'0'=>626,'1'=>626,'2'=>626,'3'=>626,'4'=>626,'5'=>626,'6'=>626,'7'=>626,'8'=>626,'9'=>626,':'=>360,';'=>360,'<'=>754,'='=>754,'>'=>754,'?'=>522,'@'=>900,'A'=>696, |
||||
'B'=>686,'C'=>660,'D'=>747,'E'=>615,'F'=>615,'G'=>738,'H'=>753,'I'=>334,'J'=>334,'K'=>697,'L'=>573,'M'=>896,'N'=>753,'O'=>765,'P'=>659,'Q'=>765,'R'=>693,'S'=>648,'T'=>614,'U'=>730,'V'=>696,'W'=>993, |
||||
'X'=>694,'Y'=>651,'Z'=>652,'['=>411,'\\'=>329,']'=>411,'^'=>754,'_'=>450,'`'=>450,'a'=>607,'b'=>644,'c'=>533,'d'=>644,'e'=>610,'f'=>391,'g'=>644,'h'=>641,'i'=>308,'j'=>308,'k'=>598,'l'=>308,'m'=>938, |
||||
'n'=>641,'o'=>618,'p'=>644,'q'=>644,'r'=>444,'s'=>536,'t'=>430,'u'=>641,'v'=>586,'w'=>831,'x'=>580,'y'=>586,'z'=>523,'{'=>641,'|'=>329,'}'=>641,'~'=>754,chr(127)=>540,chr(128)=>540,chr(129)=>540,chr(130)=>540,chr(131)=>540, |
||||
chr(132)=>540,chr(133)=>540,chr(134)=>540,chr(135)=>540,chr(136)=>540,chr(137)=>540,chr(138)=>540,chr(139)=>540,chr(140)=>540,chr(141)=>540,chr(142)=>540,chr(143)=>540,chr(144)=>540,chr(145)=>540,chr(146)=>540,chr(147)=>540,chr(148)=>540,chr(149)=>540,chr(150)=>540,chr(151)=>540,chr(152)=>540,chr(153)=>540, |
||||
chr(154)=>540,chr(155)=>540,chr(156)=>540,chr(157)=>540,chr(158)=>540,chr(159)=>540,chr(160)=>313,chr(161)=>410,chr(162)=>626,chr(163)=>626,chr(164)=>572,chr(165)=>626,chr(166)=>329,chr(167)=>450,chr(168)=>450,chr(169)=>900,chr(170)=>507,chr(171)=>584,chr(172)=>754,chr(173)=>374,chr(174)=>900,chr(175)=>450, |
||||
chr(176)=>450,chr(177)=>754,chr(178)=>394,chr(179)=>394,chr(180)=>450,chr(181)=>662,chr(182)=>572,chr(183)=>342,chr(184)=>450,chr(185)=>394,chr(186)=>507,chr(187)=>584,chr(188)=>932,chr(189)=>932,chr(190)=>932,chr(191)=>522,chr(192)=>696,chr(193)=>696,chr(194)=>696,chr(195)=>696,chr(196)=>696,chr(197)=>696, |
||||
chr(198)=>976,chr(199)=>660,chr(200)=>615,chr(201)=>615,chr(202)=>615,chr(203)=>615,chr(204)=>334,chr(205)=>334,chr(206)=>334,chr(207)=>334,chr(208)=>738,chr(209)=>753,chr(210)=>765,chr(211)=>765,chr(212)=>765,chr(213)=>765,chr(214)=>765,chr(215)=>754,chr(216)=>765,chr(217)=>730,chr(218)=>730,chr(219)=>730, |
||||
chr(220)=>730,chr(221)=>334,chr(222)=>648,chr(223)=>647,chr(224)=>607,chr(225)=>607,chr(226)=>607,chr(227)=>607,chr(228)=>607,chr(229)=>607,chr(230)=>943,chr(231)=>533,chr(232)=>610,chr(233)=>610,chr(234)=>610,chr(235)=>610,chr(236)=>308,chr(237)=>308,chr(238)=>308,chr(239)=>308,chr(240)=>644,chr(241)=>641, |
||||
chr(242)=>618,chr(243)=>618,chr(244)=>618,chr(245)=>618,chr(246)=>618,chr(247)=>754,chr(248)=>618,chr(249)=>641,chr(250)=>641,chr(251)=>641,chr(252)=>641,chr(253)=>308,chr(254)=>536,chr(255)=>586); |
||||
$enc='iso-8859-9'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 208 /Gbreve 221 /Idotaccent /Scedilla 240 /gbreve 253 /dotlessi /scedilla'; |
||||
$file='dejavusanscondensedbi-iso-8859-9.z'; |
||||
$size1=6168; |
||||
$size2=26317; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed-BoldOblique'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>96,'FontBBox'=>'[-149 -236 1261 927]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>313,'!'=>410,'"'=>469,'#'=>626,'$'=>626,'%'=>901,'&'=>785,'\''=>275,'('=>411,')'=>411,'*'=>470,'+'=>754, |
||||
','=>342,'-'=>374,'.'=>342,'/'=>329,'0'=>626,'1'=>626,'2'=>626,'3'=>626,'4'=>626,'5'=>626,'6'=>626,'7'=>626,'8'=>626,'9'=>626,':'=>360,';'=>360,'<'=>754,'='=>754,'>'=>754,'?'=>522,'@'=>900,'A'=>696, |
||||
'B'=>686,'C'=>660,'D'=>747,'E'=>615,'F'=>615,'G'=>738,'H'=>753,'I'=>334,'J'=>334,'K'=>697,'L'=>573,'M'=>896,'N'=>753,'O'=>765,'P'=>659,'Q'=>765,'R'=>693,'S'=>648,'T'=>614,'U'=>730,'V'=>696,'W'=>993, |
||||
'X'=>694,'Y'=>651,'Z'=>652,'['=>411,'\\'=>329,']'=>411,'^'=>754,'_'=>450,'`'=>450,'a'=>607,'b'=>644,'c'=>533,'d'=>644,'e'=>610,'f'=>391,'g'=>644,'h'=>641,'i'=>308,'j'=>308,'k'=>598,'l'=>308,'m'=>938, |
||||
'n'=>641,'o'=>618,'p'=>644,'q'=>644,'r'=>444,'s'=>536,'t'=>430,'u'=>641,'v'=>586,'w'=>831,'x'=>580,'y'=>586,'z'=>523,'{'=>641,'|'=>329,'}'=>641,'~'=>754,chr(127)=>540,chr(128)=>791,chr(129)=>573,chr(130)=>342,chr(131)=>470, |
||||
chr(132)=>580,chr(133)=>900,chr(134)=>450,chr(135)=>450,chr(136)=>626,chr(137)=>1309,chr(138)=>1039,chr(139)=>371,chr(140)=>1017,chr(141)=>735,chr(142)=>791,chr(143)=>753,chr(144)=>642,chr(145)=>342,chr(146)=>342,chr(147)=>580,chr(148)=>580,chr(149)=>575,chr(150)=>450,chr(151)=>900,chr(152)=>540,chr(153)=>900, |
||||
chr(154)=>892,chr(155)=>371,chr(156)=>860,chr(157)=>611,chr(158)=>661,chr(159)=>622,chr(160)=>313,chr(161)=>694,chr(162)=>586,chr(163)=>334,chr(164)=>572,chr(165)=>573,chr(166)=>329,chr(167)=>450,chr(168)=>615,chr(169)=>900,chr(170)=>660,chr(171)=>584,chr(172)=>754,chr(173)=>374,chr(174)=>900,chr(175)=>334, |
||||
chr(176)=>450,chr(177)=>754,chr(178)=>334,chr(179)=>308,chr(180)=>470,chr(181)=>662,chr(182)=>572,chr(183)=>342,chr(184)=>610,chr(185)=>1083,chr(186)=>533,chr(187)=>584,chr(188)=>308,chr(189)=>648,chr(190)=>536,chr(191)=>308,chr(192)=>696,chr(193)=>686,chr(194)=>686,chr(195)=>573,chr(196)=>801,chr(197)=>615, |
||||
chr(198)=>1102,chr(199)=>639,chr(200)=>753,chr(201)=>753,chr(202)=>735,chr(203)=>747,chr(204)=>896,chr(205)=>753,chr(206)=>765,chr(207)=>753,chr(208)=>659,chr(209)=>660,chr(210)=>614,chr(211)=>694,chr(212)=>892,chr(213)=>694,chr(214)=>835,chr(215)=>727,chr(216)=>1112,chr(217)=>1193,chr(218)=>845,chr(219)=>932, |
||||
chr(220)=>686,chr(221)=>660,chr(222)=>1056,chr(223)=>693,chr(224)=>607,chr(225)=>628,chr(226)=>569,chr(227)=>470,chr(228)=>727,chr(229)=>610,chr(230)=>896,chr(231)=>523,chr(232)=>630,chr(233)=>630,chr(234)=>611,chr(235)=>659,chr(236)=>735,chr(237)=>622,chr(238)=>618,chr(239)=>622,chr(240)=>644,chr(241)=>533, |
||||
chr(242)=>521,chr(243)=>586,chr(244)=>893,chr(245)=>580,chr(246)=>667,chr(247)=>618,chr(248)=>956,chr(249)=>995,chr(250)=>676,chr(251)=>813,chr(252)=>569,chr(253)=>533,chr(254)=>875,chr(255)=>578); |
||||
$enc='win-1251'; |
||||
$diff='128 /afii10051 /afii10052 131 /afii10100 136 /Euro 138 /afii10058 140 /afii10059 /afii10061 /afii10060 /afii10145 /afii10099 152 /.notdef 154 /afii10106 156 /afii10107 /afii10109 /afii10108 /afii10193 161 /afii10062 /afii10110 /afii10057 165 /afii10050 168 /afii10023 170 /afii10053 175 /afii10056 178 /afii10055 /afii10103 /afii10098 184 /afii10071 /afii61352 /afii10101 188 /afii10105 /afii10054 /afii10102 /afii10104 /afii10017 /afii10018 /afii10019 /afii10020 /afii10021 /afii10022 /afii10024 /afii10025 /afii10026 /afii10027 /afii10028 /afii10029 /afii10030 /afii10031 /afii10032 /afii10033 /afii10034 /afii10035 /afii10036 /afii10037 /afii10038 /afii10039 /afii10040 /afii10041 /afii10042 /afii10043 /afii10044 /afii10045 /afii10046 /afii10047 /afii10048 /afii10049 /afii10065 /afii10066 /afii10067 /afii10068 /afii10069 /afii10070 /afii10072 /afii10073 /afii10074 /afii10075 /afii10076 /afii10077 /afii10078 /afii10079 /afii10080 /afii10081 /afii10082 /afii10083 /afii10084 /afii10085 /afii10086 /afii10087 /afii10088 /afii10089 /afii10090 /afii10091 /afii10092 /afii10093 /afii10094 /afii10095 /afii10096 /afii10097'; |
||||
$file='dejavusanscondensedbi-win-1251.z'; |
||||
$size1=6323; |
||||
$size2=27401; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed-BoldOblique'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>96,'FontBBox'=>'[-149 -236 1261 928]','ItalicAngle'=>-11,'StemV'=>120,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>313,'!'=>410,'"'=>469,'#'=>626,'$'=>626,'%'=>901,'&'=>785,'\''=>275,'('=>411,')'=>411,'*'=>470,'+'=>754, |
||||
','=>342,'-'=>374,'.'=>342,'/'=>329,'0'=>626,'1'=>626,'2'=>626,'3'=>626,'4'=>626,'5'=>626,'6'=>626,'7'=>626,'8'=>626,'9'=>626,':'=>360,';'=>360,'<'=>754,'='=>754,'>'=>754,'?'=>522,'@'=>900,'A'=>696, |
||||
'B'=>686,'C'=>660,'D'=>747,'E'=>615,'F'=>615,'G'=>738,'H'=>753,'I'=>334,'J'=>334,'K'=>697,'L'=>573,'M'=>896,'N'=>753,'O'=>765,'P'=>659,'Q'=>765,'R'=>693,'S'=>648,'T'=>614,'U'=>730,'V'=>696,'W'=>993, |
||||
'X'=>694,'Y'=>651,'Z'=>652,'['=>411,'\\'=>329,']'=>411,'^'=>754,'_'=>450,'`'=>450,'a'=>607,'b'=>644,'c'=>533,'d'=>644,'e'=>610,'f'=>391,'g'=>644,'h'=>641,'i'=>308,'j'=>308,'k'=>598,'l'=>308,'m'=>938, |
||||
'n'=>641,'o'=>618,'p'=>644,'q'=>644,'r'=>444,'s'=>536,'t'=>430,'u'=>641,'v'=>586,'w'=>831,'x'=>580,'y'=>586,'z'=>523,'{'=>641,'|'=>329,'}'=>641,'~'=>754,chr(127)=>540,chr(128)=>626,chr(129)=>540,chr(130)=>342,chr(131)=>391, |
||||
chr(132)=>580,chr(133)=>900,chr(134)=>450,chr(135)=>450,chr(136)=>450,chr(137)=>1309,chr(138)=>648,chr(139)=>371,chr(140)=>1050,chr(141)=>540,chr(142)=>652,chr(143)=>540,chr(144)=>540,chr(145)=>342,chr(146)=>342,chr(147)=>580,chr(148)=>580,chr(149)=>575,chr(150)=>450,chr(151)=>900,chr(152)=>450,chr(153)=>900, |
||||
chr(154)=>536,chr(155)=>371,chr(156)=>984,chr(157)=>540,chr(158)=>523,chr(159)=>651,chr(160)=>313,chr(161)=>410,chr(162)=>626,chr(163)=>626,chr(164)=>572,chr(165)=>626,chr(166)=>329,chr(167)=>450,chr(168)=>450,chr(169)=>900,chr(170)=>507,chr(171)=>584,chr(172)=>754,chr(173)=>374,chr(174)=>900,chr(175)=>450, |
||||
chr(176)=>450,chr(177)=>754,chr(178)=>394,chr(179)=>394,chr(180)=>450,chr(181)=>662,chr(182)=>572,chr(183)=>342,chr(184)=>450,chr(185)=>394,chr(186)=>507,chr(187)=>584,chr(188)=>932,chr(189)=>932,chr(190)=>932,chr(191)=>522,chr(192)=>696,chr(193)=>696,chr(194)=>696,chr(195)=>696,chr(196)=>696,chr(197)=>696, |
||||
chr(198)=>976,chr(199)=>660,chr(200)=>615,chr(201)=>615,chr(202)=>615,chr(203)=>615,chr(204)=>334,chr(205)=>334,chr(206)=>334,chr(207)=>334,chr(208)=>760,chr(209)=>753,chr(210)=>765,chr(211)=>765,chr(212)=>765,chr(213)=>765,chr(214)=>765,chr(215)=>754,chr(216)=>765,chr(217)=>730,chr(218)=>730,chr(219)=>730, |
||||
chr(220)=>730,chr(221)=>651,chr(222)=>668,chr(223)=>647,chr(224)=>607,chr(225)=>607,chr(226)=>607,chr(227)=>607,chr(228)=>607,chr(229)=>607,chr(230)=>943,chr(231)=>533,chr(232)=>610,chr(233)=>610,chr(234)=>610,chr(235)=>610,chr(236)=>308,chr(237)=>308,chr(238)=>308,chr(239)=>308,chr(240)=>618,chr(241)=>641, |
||||
chr(242)=>618,chr(243)=>618,chr(244)=>618,chr(245)=>618,chr(246)=>618,chr(247)=>754,chr(248)=>618,chr(249)=>641,chr(250)=>641,chr(251)=>641,chr(252)=>641,chr(253)=>586,chr(254)=>644,chr(255)=>586); |
||||
$enc='win-1252'; |
||||
$diff=''; |
||||
$file='dejavusanscondensedbi.z'; |
||||
$size1=6181; |
||||
$size2=29521; |
||||
?> |
Binary file not shown.
@ -1,25 +0,0 @@ |
||||
<?php |
||||
$type='Type1'; |
||||
$name='DejaVuSansCondensed-Oblique'; |
||||
$desc=array('Ascent'=>928,'Descent'=>-236,'CapHeight'=>729,'Flags'=>96,'FontBBox'=>'[-147 -236 918 929]','ItalicAngle'=>-11,'StemV'=>70,'MissingWidth'=>540); |
||||
$up=-63; |
||||
$ut=44; |
||||
$cw=array( |
||||
chr(0)=>540,chr(1)=>540,chr(2)=>540,chr(3)=>540,chr(4)=>540,chr(5)=>540,chr(6)=>540,chr(7)=>540,chr(8)=>540,chr(9)=>540,chr(10)=>540,chr(11)=>540,chr(12)=>540,chr(13)=>540,chr(14)=>540,chr(15)=>540,chr(16)=>540,chr(17)=>540,chr(18)=>540,chr(19)=>540,chr(20)=>540,chr(21)=>540, |
||||
chr(22)=>540,chr(23)=>540,chr(24)=>540,chr(25)=>540,chr(26)=>540,chr(27)=>540,chr(28)=>540,chr(29)=>540,chr(30)=>540,chr(31)=>540,' '=>286,'!'=>360,'"'=>414,'#'=>754,'$'=>572,'%'=>855,'&'=>702,'\''=>247,'('=>351,')'=>351,'*'=>450,'+'=>754, |
||||
','=>286,'-'=>325,'.'=>286,'/'=>303,'0'=>572,'1'=>572,'2'=>572,'3'=>572,'4'=>572,'5'=>572,'6'=>572,'7'=>572,'8'=>572,'9'=>572,':'=>303,';'=>303,'<'=>754,'='=>754,'>'=>754,'?'=>478,'@'=>900,'A'=>615, |
||||
'B'=>617,'C'=>628,'D'=>693,'E'=>568,'F'=>518,'G'=>697,'H'=>677,'I'=>265,'J'=>265,'K'=>590,'L'=>501,'M'=>776,'N'=>673,'O'=>708,'P'=>542,'Q'=>708,'R'=>625,'S'=>571,'T'=>549,'U'=>659,'V'=>615,'W'=>890, |
||||
'X'=>616,'Y'=>549,'Z'=>616,'['=>351,'\\'=>303,']'=>351,'^'=>754,'_'=>450,'`'=>450,'a'=>551,'b'=>571,'c'=>495,'d'=>571,'e'=>554,'f'=>316,'g'=>571,'h'=>570,'i'=>250,'j'=>250,'k'=>521,'l'=>250,'m'=>876, |
||||
'n'=>570,'o'=>550,'p'=>571,'q'=>571,'r'=>370,'s'=>469,'t'=>353,'u'=>570,'v'=>532,'w'=>736,'x'=>532,'y'=>532,'z'=>472,'{'=>572,'|'=>303,'}'=>572,'~'=>754,chr(127)=>540,chr(128)=>540,chr(129)=>540,chr(130)=>540,chr(131)=>540, |
||||
chr(132)=>540,chr(133)=>540,chr(134)=>540,chr(135)=>540,chr(136)=>540,chr(137)=>540,chr(138)=>540,chr(139)=>540,chr(140)=>540,chr(141)=>540,chr(142)=>540,chr(143)=>540,chr(144)=>540,chr(145)=>540,chr(146)=>540,chr(147)=>540,chr(148)=>540,chr(149)=>540,chr(150)=>540,chr(151)=>540,chr(152)=>540,chr(153)=>540, |
||||
chr(154)=>540,chr(155)=>540,chr(156)=>540,chr(157)=>540,chr(158)=>540,chr(159)=>540,chr(160)=>286,chr(161)=>615,chr(162)=>450,chr(163)=>505,chr(164)=>572,chr(165)=>501,chr(166)=>571,chr(167)=>450,chr(168)=>450,chr(169)=>571,chr(170)=>571,chr(171)=>549,chr(172)=>616,chr(173)=>325,chr(174)=>616,chr(175)=>616, |
||||
chr(176)=>450,chr(177)=>551,chr(178)=>450,chr(179)=>258,chr(180)=>450,chr(181)=>250,chr(182)=>469,chr(183)=>450,chr(184)=>450,chr(185)=>469,chr(186)=>469,chr(187)=>353,chr(188)=>472,chr(189)=>450,chr(190)=>472,chr(191)=>472,chr(192)=>625,chr(193)=>615,chr(194)=>615,chr(195)=>615,chr(196)=>615,chr(197)=>501, |
||||
chr(198)=>628,chr(199)=>628,chr(200)=>628,chr(201)=>568,chr(202)=>568,chr(203)=>568,chr(204)=>568,chr(205)=>265,chr(206)=>265,chr(207)=>693,chr(208)=>697,chr(209)=>673,chr(210)=>673,chr(211)=>708,chr(212)=>708,chr(213)=>708,chr(214)=>708,chr(215)=>754,chr(216)=>625,chr(217)=>659,chr(218)=>659,chr(219)=>659, |
||||
chr(220)=>659,chr(221)=>549,chr(222)=>549,chr(223)=>567,chr(224)=>370,chr(225)=>551,chr(226)=>551,chr(227)=>551,chr(228)=>551,chr(229)=>250,chr(230)=>495,chr(231)=>495,chr(232)=>495,chr(233)=>554,chr(234)=>554,chr(235)=>554,chr(236)=>554,chr(237)=>250,chr(238)=>250,chr(239)=>571,chr(240)=>571,chr(241)=>570, |
||||
chr(242)=>570,chr(243)=>550,chr(244)=>550,chr(245)=>550,chr(246)=>550,chr(247)=>754,chr(248)=>370,chr(249)=>570,chr(250)=>570,chr(251)=>570,chr(252)=>570,chr(253)=>532,chr(254)=>353,chr(255)=>450); |
||||
$enc='iso-8859-2'; |
||||
$diff='128 /.notdef 130 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 142 /.notdef 145 /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef /.notdef 158 /.notdef /.notdef 161 /Aogonek /breve /Lslash 165 /Lcaron /Sacute 169 /Scaron /Scedilla /Tcaron /Zacute 174 /Zcaron /Zdotaccent 177 /aogonek /ogonek /lslash 181 /lcaron /sacute /caron 185 /scaron /scedilla /tcaron /zacute /hungarumlaut /zcaron /zdotaccent /Racute 195 /Abreve 197 /Lacute /Cacute 200 /Ccaron 202 /Eogonek 204 /Ecaron 207 /Dcaron /Dcroat /Nacute /Ncaron 213 /Ohungarumlaut 216 /Rcaron /Uring 219 /Uhungarumlaut 222 /Tcommaaccent 224 /racute 227 /abreve 229 /lacute /cacute 232 /ccaron 234 /eogonek 236 /ecaron 239 /dcaron /dcroat /nacute /ncaron 245 /ohungarumlaut 248 /rcaron /uring 251 /uhungarumlaut 254 /tcommaaccent /dotaccent'; |
||||
$file='dejavusanscondensedi-iso-8859-2.z'; |
||||
$size1=6091; |
||||
$size2=25393; |
||||
?> |
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue